diff options
author | Alexey Neyman <stilor@att.net> | 2017-02-15 20:36:39 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-15 20:36:39 -0800 |
commit | 2f052394a5376fe90c240972e2cb8f8abcc7267c (patch) | |
tree | 49c67ed5fb9729ef554c3a07a916612af5139e24 /scripts/build/test_suite/gcc.sh | |
parent | fbc69323085e2370faeb8b46291cd66cbf9ef649 (diff) | |
parent | 7bcf18bfab84374d3305c7a088f95ac1219ddf93 (diff) | |
download | crosstool-ng-2f052394a5376fe90c240972e2cb8f8abcc7267c.tar.gz crosstool-ng-2f052394a5376fe90c240972e2cb8f8abcc7267c.tar.bz2 crosstool-ng-2f052394a5376fe90c240972e2cb8f8abcc7267c.zip |
Merge pull request #596 from stilor/sed-vs-gsed
Determine whether -E/-r option selects extended regexp
Diffstat (limited to 'scripts/build/test_suite/gcc.sh')
-rw-r--r-- | scripts/build/test_suite/gcc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/test_suite/gcc.sh b/scripts/build/test_suite/gcc.sh index c829a438..eac095d6 100644 --- a/scripts/build/test_suite/gcc.sh +++ b/scripts/build/test_suite/gcc.sh @@ -21,7 +21,7 @@ do_test_suite_gcc_build() { "${CT_SRC_DIR}/gcc-${CT_CC_GCC_VERSION}/gcc/testsuite" \ "${CT_TEST_SUITE_DIR}/gcc" - CT_DoExecLog ALL sed -i -r -e "s/@@DG_TARGET@@/${CT_TARGET}/g;" \ + CT_DoExecLog ALL sed_r -i -e "s/@@DG_TARGET@@/${CT_TARGET}/g;" \ "${CT_TEST_SUITE_DIR}/gcc/Makefile" CT_EndStep |