diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2014-02-26 23:51:23 +0100 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2014-02-26 23:51:23 +0100 |
commit | b1ee32edbe9be7b695cce7975450782e0a290c47 (patch) | |
tree | 2231eb161fc3c8ae014c79435a7bca72d90eabf8 /bindisttest | |
parent | 32f41c79960ffc1d04c4573acb37756109d279a5 (diff) | |
download | haskell-b1ee32edbe9be7b695cce7975450782e0a290c47.tar.gz |
Follow-up to 32f41c79
These parts were forgotten to be committed together with the rest of
32f41c79960ffc1d04c4573acb37756109d279a5
Signed-off-by: Herbert Valerio Riedel <hvr@gnu.org>
Diffstat (limited to 'bindisttest')
-rw-r--r-- | bindisttest/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bindisttest/Makefile b/bindisttest/Makefile index ecd029afd9..bc805c8494 100644 --- a/bindisttest/Makefile +++ b/bindisttest/Makefile @@ -21,9 +21,9 @@ include $(TOP)/mk/tree.mk include $(TOP)/mk/config.mk ifeq "$(TEST_PREP)" "YES" -BIN_DIST_TEST_TAR_BZ2 = ../$(BIN_DIST_PREP_TAR_BZ2) +BIN_DIST_TEST_TAR_COMP = ../$(BIN_DIST_PREP_TAR_COMP) else -BIN_DIST_TEST_TAR_BZ2 = ../$(BIN_DIST_TAR_BZ2) +BIN_DIST_TEST_TAR_COMP = ../$(BIN_DIST_TAR_COMP) endif all: @@ -36,7 +36,7 @@ all: # NB. tar has funny interpretation of filenames sometimes (thinking # c:/foo is a remote file), so it's safer to bzip and then pipe into # tar rather than using tar -xjf: - cd a/b/c/ && $(BZIP2_CMD) -cd ../../../$(BIN_DIST_TEST_TAR_BZ2) | $(TAR_CMD) -xf - + cd a/b/c/ && $(TAR_COMP_CMD) -cd ../../../$(BIN_DIST_TEST_TAR_COMP) | $(TAR_CMD) -xf - ifeq "$(Windows)" "YES" mv a/b/c/$(BIN_DIST_NAME) $(BIN_DIST_INST_DIR) else |