From: Rafael Kitover Date: Wed, 12 Sep 2018 10:24:54 +0000 (-0700) Subject: Fix configure arg --without-bundled-zlib X-Git-Tag: v3.5~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5764aa205267042a103edb46608b3caeaf985008;p=thirdparty%2Fccache.git Fix configure arg --without-bundled-zlib If the result of the AC_ARG_WITH check is 'no', assume system zlib. --- diff --git a/configure.ac b/configure.ac index ae2c208bc..4d78ed911 100644 --- a/configure.ac +++ b/configure.ac @@ -115,8 +115,13 @@ if test x${with_bundled_zlib} = x; then use_bundled_zlib=yes fi else - AC_MSG_NOTICE(using bundled zlib as requested) - use_bundled_zlib=yes + if test x${with_bundled_zlib} = xno; then + AC_MSG_NOTICE(using system zlib as requested) + use_bundled_zlib=no + else + AC_MSG_NOTICE(using bundled zlib as requested) + use_bundled_zlib=yes + fi fi if test x${use_bundled_zlib} = xyes; then