summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2012-08-30 16:50:27 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-08-30 16:51:07 -0500
commit97606f3af75c883a711f8fca2fe5c1e8e13e77a4 (patch)
tree5276840faa1243b47b0e8e16d5fe0eeb3ba809a0 /configure.in
parent743e51000adbf6cf0f50d96189511fe1649e47c8 (diff)
configure: fix missing "" around potentially empty variable
Change-Id: Ieeb9f829c754b7bcc2f5fbe82a360e5625539803
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 764fdac08275..e14fb662877d 100644
--- a/configure.in
+++ b/configure.in
@@ -12108,7 +12108,7 @@ fi
# ===================================================================
AC_MSG_CHECKING([whether to create huge library])
MERGELIBS=
-if test $enable_mergelibs = yes; then
+if test "$enable_mergelibs" = "yes" ; then
if test $WITH_BINFILTER = YES; then
add_warning "--enable-mergelibs conflicts with --enable-binfilter. Disabling mergelibs."
AC_MSG_RESULT([no])