diff options
author | unknown <serg@serg.mylan> | 2006-06-15 21:43:29 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2006-06-15 21:43:29 +0200 |
commit | 33f38c317ad32820d8a0f7bcad665e442f643977 (patch) | |
tree | 0b13b37422ece64a7f11d19a77a9ea90a1d88534 /config | |
parent | b15981a40cd7b16c206c4d7fe77df33bb99bbe27 (diff) | |
download | mariadb-git-33f38c317ad32820d8a0f7bcad665e442f643977.tar.gz |
don't call plugins' configure scripts manually, use AC_CONFIG_SUBDIRS
don't add CFLAGS/CXXFLAGS to ./configure command line in config.status
but _do_ add them before calling plugins' configure scripts
config/ac-macros/plugins.m4:
don't call plugins' configure scripts manually, use AC_CONFIG_SUBDIRS
Diffstat (limited to 'config')
-rw-r--r-- | config/ac-macros/plugins.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/ac-macros/plugins.m4 b/config/ac-macros/plugins.m4 index 4bf9292547d..cfc5f8dbcbe 100644 --- a/config/ac-macros/plugins.m4 +++ b/config/ac-macros/plugins.m4 @@ -406,7 +406,7 @@ dnl Although this is "pretty", it breaks libmysqld build mysql_plugin_dirs="$mysql_plugin_dirs $6" m4_syscmd(test -f "$6/configure") ifelse(m4_sysval, 0, - [other_configures="$other_configures $6/configure"], + [AC_CONFIG_SUBDIRS($6)], [AC_CONFIG_FILES($6/Makefile)] ) ifelse(m4_substr($6, 0, 8), [storage/], |