diff options
author | Alex Gorrod <alexg@wiredtiger.com> | 2014-06-20 15:27:48 +1000 |
---|---|---|
committer | Alex Gorrod <alexg@wiredtiger.com> | 2014-06-20 15:27:48 +1000 |
commit | df96872152325680f309c6a32cfc66af43081bc8 (patch) | |
tree | 0b62ca83e498a1fa517bdefec31556b6da843869 /build_posix | |
parent | 9c7325e798cfec4c01b955e2ce7563ba9939e01f (diff) | |
download | mongo-df96872152325680f309c6a32cfc66af43081bc8.tar.gz |
Fix quoting in m4 script.
Diffstat (limited to 'build_posix')
-rw-r--r-- | build_posix/aclocal/options.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build_posix/aclocal/options.m4 b/build_posix/aclocal/options.m4 index df14f32ea36..f75c1dc9124 100644 --- a/build_posix/aclocal/options.m4 +++ b/build_posix/aclocal/options.m4 @@ -26,7 +26,7 @@ AC_ARG_WITH(builtins, # Validate and setup each builtin extension library. builtin_list=`echo "$with_builtins"|tr -s , ' '` -for builtin_i in "$builtin_list"; do +for builtin_i in $builtin_list; do case "$builtin_i" in snappy) AC_DEFINE(HAVE_BUILTIN_EXTENSION_SNAPPY) wt_cv_with_builtin_extension_snappy=yes;; |