summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@suse.cz>2013-04-12 07:45:09 +0200
committerMiklos Vajna <vmiklos@suse.cz>2013-04-12 07:46:12 +0200
commitac8461c6287f39c600333fb7a8df90a6f44dbee0 (patch)
tree249a40ede4a0668e7602e06d84017647f860bae8 /configure.ac
parentef68c2b97de163d1fd3a960675addc1eb3d4bc6f (diff)
configure: fix typo that enabled mergelibs by default
The commit message of 0e5f2ea0de71439fe121da47deaba68585541808? didn't mention this, so I guess flipping over the default was just an accident. Change-Id: I9078cc56a6064e3498b012848b860c7b414b37e6
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index cd9f0d06b684..6e4500538338 100644
--- a/configure.ac
+++ b/configure.ac
@@ -11640,7 +11640,7 @@ if test $_os = iOS -o $_os = Android; then
enable_mergelibs=no
fi
-if test "$enable_mergelibs" != "no"; then
+if test -n "$enable_mergelibs" -a "$enable_mergelibs" != "no"; then
if test $_os != Linux -a $_os != WINNT; then
add_warning "--enable-mergelibs is not tested for this platform"
fi