mkcheck.in: workaround for bash 2.01 IFS bug.
authorFelix Lee <flee@redhat.com>
Mon, 12 Mar 2001 21:52:29 +0000 (21:52 +0000)
committerBenjamin Kosnik <bkoz@gcc.gnu.org>
Mon, 12 Mar 2001 21:52:29 +0000 (21:52 +0000)
2001-03-12  Felix Lee  <flee@redhat.com>

* mkcheck.in: workaround for bash 2.01 IFS bug.

From-SVN: r40430

libstdc++-v3/ChangeLog
libstdc++-v3/mkcheck.in

index 1942ff35aa522c5308c6a581dafca2bb5220e134..819e77c9715946913a255385358560681dc9b924 100644 (file)
@@ -1,3 +1,7 @@
+2001-03-12  Felix Lee  <flee@redhat.com>
+
+       * mkcheck.in: workaround for bash 2.01 IFS bug.
+
 2001-03-12  Benjamin Kosnik  <bkoz@redhat.com>
 
        Fixups for -fno-for-scope
index 913c4455558944d80c4d54633b2bdcd0ed8cb02b..9788d181ec517db587d526d8d0bd24d10380032a 100755 (executable)
@@ -51,7 +51,8 @@ esac
 
 # Compute the flags necessary to run the testsuite.
 saved_ifs=$IFS
-IFS=':'
+# bash 2.01 does the wrong thing with $* if IFS doesn't include space
+IFS=': '
 set `../tests_flags ${query} $*` || exit 1
 BUILD_DIR=$1; SRC_DIR=$2; PREFIX_DIR=$3; CXX=$4; CXXFLAGS=$5; INCLUDES=$6; LIBS=$7;
 IFS=$saved_ifs