diff options
author | unknown <tim@cane.mysql.fi> | 2000-12-22 16:09:10 +0200 |
---|---|---|
committer | unknown <tim@cane.mysql.fi> | 2000-12-22 16:09:10 +0200 |
commit | 4a1f883b9dd1d87b6c07c9a2a475380dfda24442 (patch) | |
tree | 5a4fdcdadc68840b8e115b5a652d22d9d2d26905 /BUILD/FINISH.sh | |
parent | a09659dd577dcf4c9ff907c680df0abf011d047c (diff) | |
download | mariadb-git-4a1f883b9dd1d87b6c07c9a2a475380dfda24442.tar.gz |
Fix bug in FINISH.sh that kept CFLAGS from being used.
Allow multiple options to be passed to mysql-test-run.
BUILD/FINISH.sh:
- use CFLAGS properly
mysql-test/mysql-test-run.sh:
- allow multiple options (e.g., --gcov --force)
Diffstat (limited to 'BUILD/FINISH.sh')
-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 |