diff options
author | Ian Lynagh <igloo@earth.li> | 2010-06-16 17:59:16 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2010-06-16 17:59:16 +0000 |
commit | 4108894c6e92887fe03c2397ff5a8c424413aad6 (patch) | |
tree | e5645c34395c22fa7f2a41408beec7fddd57a597 /ghc.mk | |
parent | 0481fe092fd9e274096fff1fd9885fd68805202a (diff) | |
download | haskell-4108894c6e92887fe03c2397ff5a8c424413aad6.tar.gz |
Convert some more variable names to FOO_CMD, for consistency
Diffstat (limited to 'ghc.mk')
-rw-r--r-- | ghc.mk | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1000,10 +1000,10 @@ windows-binary-dist-prep: cd bindistprep && "$(TAR_CMD)" cf - $(BIN_DIST_NAME) | bzip2 -c > ../$(BIN_DIST_PREP_TAR_BZ2) windows-installer: -ifeq "$(ISCC)" "" - @echo No ISCC, so not making installer +ifeq "$(ISCC_CMD)" "" + @echo No ISCC_CMD, so not making installer else - "$(ISCC)" /O. /Fbindistprep/$(WINDOWS_INSTALLER_BASE) - < distrib/ghc.iss + "$(ISCC_CMD)" /O. /Fbindistprep/$(WINDOWS_INSTALLER_BASE) - < distrib/ghc.iss endif # tryTimes tries to run its third argument multiple times, until it |