summaryrefslogtreecommitdiff
path: root/lib/make/make.config.defn.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/make.config.defn.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/make.config.defn.in')
-rw-r--r--lib/make/make.config.defn.in3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/make/make.config.defn.in b/lib/make/make.config.defn.in
index 3bf4cd9e..516bf00d 100644
--- a/lib/make/make.config.defn.in
+++ b/lib/make/make.config.defn.in
@@ -33,7 +33,8 @@ export AR = @AR@
export RANLIB = @RANLIB@
export PERL = @PERL@
export TAR = @TAR@
-export GZIP = @GZIP@
+# GZIP is used by gzip for a list of default options, thus we use GZIP_CMD
+export GZIP_CMD = @GZIP_CMD@
export PATCH = @PATCH@
export GIT = @GIT@