From 66f3731f432de341b61be1083415711d3d124a1a Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Sun, 8 Sep 2013 17:10:58 -0700 Subject: [PATCH] * configure.ac: Tweak previous change. Only disable GZIP_PROG if there is something to disable. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index ba5e9d2fb08..2e90f5fb7b5 100644 --- a/configure.ac +++ b/configure.ac @@ -946,7 +946,7 @@ AC_PATH_PROG(INSTALL_INFO, install-info, :, dnl Don't use GZIP, which is used by gzip for additional parameters. AC_PATH_PROG(GZIP_PROG, gzip) -test $with_compress_install != yes && \ +test $with_compress_install != yes && test -n "$GZIP_PROG" && \ GZIP_PROG=" # $GZIP_PROG # (disabled by configure --without-compress-install)" if test $opsys = gnu-linux; then -- 2.11.4.GIT