mkcheck.in: workaround for bash 2.01 IFS bug.

2001-03-12  Felix Lee  <flee@redhat.com>

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

From-SVN: r40430
This commit is contained in:
Felix Lee 2001-03-12 21:52:29 +00:00 committed by Benjamin Kosnik
parent db1d582c81
commit 52e8d2b2a0
2 changed files with 6 additions and 1 deletions

View 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

View File

@ -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