diff options
author | Carl Worth <cworth@cworth.org> | 2009-11-22 04:45:16 +0100 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2009-11-22 04:45:16 +0100 |
commit | 1266d8511e9adc7296ec4ddbf609dec824b4c94f (patch) | |
tree | a442bf47b26c795acb7c599dbb2feae94bf63001 /Makefile | |
parent | 530df68258ea0fbdceafd6e4a0f51889c6ee86d2 (diff) |
Makefile: Fix to work even with GZIP environment variable set.
The rule here was written to assume that if the GZIP environment
variable was set that it would be the gzip binary to execute,
(similar to the CC and CXX variables). But GZIP is actually used
to pass arguments to gzip, so we have to use a different name.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -4,7 +4,9 @@ CFLAGS=-O2 # Additional programs that are used during the compilation process. EMACS ?= emacs -GZIP ?= gzip +# Lowercase to avoid clash with GZIP environment variable for passing +# arguments to gzip. +gzip = gzip # Additional flags that we will append to whatever the user set. # These aren't intended for the user to manipulate. |