diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2005-01-21 08:41:38 +0100 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2005-01-21 08:41:38 +0100 |
commit | 4c0a0c3e56fa94baff9f12895c6d96f1ffb77698 (patch) | |
tree | 827086ecaf5900401728f176ad936c75f99855d6 /config | |
parent | 43abffc89b83099d4ab701be5a002f0c3dc4e56f (diff) | |
download | mariadb-git-4c0a0c3e56fa94baff9f12895c6d96f1ffb77698.tar.gz |
moved START_AND_EXIT check so it can actually be used
fix as not to overwrite previoulsy set flags in configure
config/ac-macros/ha_ndbcluster.m4:
fix as not to overwrite previoulsy set flags in configure
configure.in:
fix as not to overwrite previoulsy set flags in configure
mysql-test/mysql-test-run.sh:
movet START_AND_EXIT check so it can actually be used
Diffstat (limited to 'config')
-rw-r--r-- | config/ac-macros/ha_ndbcluster.m4 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/ac-macros/ha_ndbcluster.m4 b/config/ac-macros/ha_ndbcluster.m4 index 751a11d1895..dc5e0e73558 100644 --- a/config/ac-macros/ha_ndbcluster.m4 +++ b/config/ac-macros/ha_ndbcluster.m4 @@ -64,8 +64,8 @@ AC_DEFUN([MYSQL_CHECK_NDB_OPTIONS], [ AC_ARG_WITH([ndb-ccflags], [ --with-ndb-ccflags Extra CC options for ndb compile], - [ndb_cxxflags_fix=$withval], - [ndb_cxxflags_fix=]) + [ndb_cxxflags_fix="$ndb_cxxflags_fix $withval"], + [ndb_cxxflags_fix=$ndb_cxxflags_fix]) AC_MSG_CHECKING([for NDB Cluster options]) AC_MSG_RESULT([]) |