summaryrefslogtreecommitdiff
path: root/lib/make/configure.in
diff options
context:
space:
mode:
authorknarf <knarf@17b73243-c579-4c4c-a9d2-2d5706c11dac>2011-03-16 15:25:44 +0000
committerknarf <knarf@17b73243-c579-4c4c-a9d2-2d5706c11dac>2011-03-16 15:25:44 +0000
commitef9b41044b0a6d44e67bb11cc9a6e3c7b3aefe3d (patch)
tree2ad9fd0a1df6c27de4085c2a572037c6305a262b /lib/make/configure.in
parente544e81f8593ddb3469b7dcc8559789479996776 (diff)
don't use GZIP for the location of the gzip executable, because the latter actually uses that very variable for a list of default options. Use GZIP_CMD instead
git-svn-id: http://svn.cactuscode.org/flesh/trunk@4690 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib/make/configure.in')
-rw-r--r--lib/make/configure.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/make/configure.in b/lib/make/configure.in
index 2bba5837..4705df39 100644
--- a/lib/make/configure.in
+++ b/lib/make/configure.in
@@ -205,8 +205,8 @@ if test -z "$TAR" ; then
AC_CHECK_PROGS(TAR, gtar tar)
fi
-if test -z "$GZIP" ; then
- AC_CHECK_PROGS(GZIP, gzip)
+if test -z "$GZIP_CMD" ; then
+ AC_CHECK_PROGS(GZIP_CMD, gzip)
fi
if test -z "$PATCH" ; then