diff options
author | Ian Lynagh <igloo@earth.li> | 2010-06-16 16:11:08 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-06-16 16:11:08 +0000 |
commit | 0481fe092fd9e274096fff1fd9885fd68805202a (patch) | |
tree | ba7baf38df64f98b8784ba57e970cc9fdeaf568c /mk/validate-settings.mk | |
parent | 8a0d9617d2b9741c25fb1ed20b96b054bd3254a3 (diff) | |
download | haskell-0481fe092fd9e274096fff1fd9885fd68805202a.tar.gz |
Rename some variables from FOO to FOO_CMD
This fixes a problem with commands like gzip, where if $GZIP is exported
in the environment, then when make runs a command it'll put the Makefile
variable's value in the environment. But gzip treats $GZIP as arguments
for itself, so when we run gzip it thinks we're giving it "gzip" as an
argument.
Diffstat (limited to 'mk/validate-settings.mk')
-rw-r--r-- | mk/validate-settings.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/validate-settings.mk b/mk/validate-settings.mk index 673e542bda..31c8853fdc 100644 --- a/mk/validate-settings.mk +++ b/mk/validate-settings.mk @@ -18,7 +18,7 @@ GhcLibHcOpts += -O -dcore-lint GhcLibWays := $(filter v dyn,$(GhcLibWays)) SplitObjs = NO NoFibWays = -STRIP = : +STRIP_CMD = : CHECK_PACKAGES = YES |