diff options
author | tim@cane.mysql.fi <> | 2000-12-22 16:09:10 +0200 |
---|---|---|
committer | tim@cane.mysql.fi <> | 2000-12-22 16:09:10 +0200 |
commit | 94806e013dfdd1ba68232d5abc790a39ebb87cf2 (patch) | |
tree | 5a4fdcdadc68840b8e115b5a652d22d9d2d26905 /BUILD | |
parent | 7e3fd8ce798c681cdbe18dcdecb563f63160166c (diff) | |
download | mariadb-git-94806e013dfdd1ba68232d5abc790a39ebb87cf2.tar.gz |
Fix bug in FINISH.sh that kept CFLAGS from being used.
Allow multiple options to be passed to mysql-test-run.
Diffstat (limited to 'BUILD')
-rw-r--r-- | BUILD/FINISH.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BUILD/FINISH.sh b/BUILD/FINISH.sh index 02deb67bd25..089ff19a7be 100644 --- a/BUILD/FINISH.sh +++ b/BUILD/FINISH.sh @@ -6,7 +6,7 @@ for arg in "$@"; do done -CFLAGS="$cflags" CXX=gcc CXXFLAGS="$cxxflags" eval "$configure" +eval "CFLAGS='$cflags' CXX=gcc CXXFLAGS='$cxxflags' $configure" if [ "x$do_make" = "xno" ] ; then exit 0 |