diff options
author | Kent Boortz <kent.boortz@sun.com> | 2010-05-05 17:50:22 +0200 |
---|---|---|
committer | Kent Boortz <kent.boortz@sun.com> | 2010-05-05 17:50:22 +0200 |
commit | d4cc32c6f8cc85a112143df8cbee73cd120a9336 (patch) | |
tree | df23e4ecbd6ef58f16f76aab3908ade8cad0ef2e /support-files/mysql.spec.sh | |
parent | d3915204d5cbda3ac415f88c337493e0b8eb91af (diff) | |
download | mariadb-git-d4cc32c6f8cc85a112143df8cbee73cd120a9336.tar.gz |
Output the config.h defines to stdout
Diffstat (limited to 'support-files/mysql.spec.sh')
-rw-r--r-- | support-files/mysql.spec.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/support-files/mysql.spec.sh b/support-files/mysql.spec.sh index 3ad9eebd657..e3944805368 100644 --- a/support-files/mysql.spec.sh +++ b/support-files/mysql.spec.sh @@ -396,6 +396,7 @@ mkdir debug -DFEATURE_SET="%{feature_set}" \ -DCOMPILATION_COMMENT="%{compilation_comment_debug}" \ -DMYSQL_SERVER_SUFFIX="%{server_suffix}" + echo BEGIN_DEBUG_CONFIG ; egrep '^#define' include/config.h ; echo END_DEBUG_CONFIG make VERBOSE=1 ) # Build full release @@ -410,6 +411,7 @@ mkdir release -DFEATURE_SET="%{feature_set}" \ -DCOMPILATION_COMMENT="%{compilation_comment_release}" \ -DMYSQL_SERVER_SUFFIX="%{server_suffix}" + echo BEGIN_NORMAL_CONFIG ; egrep '^#define' include/config.h ; echo END_NORMAL_CONFIG make VERBOSE=1 ) |