diff options
author | Austin Seipp <austin@well-typed.com> | 2014-02-28 16:28:28 -0600 |
---|---|---|
committer | Austin Seipp <austin@well-typed.com> | 2014-02-28 16:28:29 -0600 |
commit | 025a66e7fc416ab9ee1df56ad26dfe6232d32900 (patch) | |
tree | 0b92d0b0c04ddc88c018165d84b96103a871c9a8 /Makefile | |
parent | 71611523c25bb89b81e789d5a2dd3d5d9754b025 (diff) | |
download | haskell-025a66e7fc416ab9ee1df56ad26dfe6232d32900.tar.gz |
Fix binary-dist target with xz/gzip
This was harmless but annoying: we forgot to take the compression
extention into account when copying the binary dist out of bindistprep
Signed-off-by: Austin Seipp <austin@well-typed.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -72,7 +72,7 @@ endif $(MAKE) -r --no-print-directory -f ghc.mk phase=final $@ binary-dist: binary-dist-prep - mv bindistprep/*.tar.bz2 . + mv bindistprep/*.tar.$(TAR_COMP_EXT) . binary-dist-prep: ifeq "$(mingw32_TARGET_OS)" "1" |