summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAustin Seipp <austin@well-typed.com>2014-02-28 16:28:28 -0600
committerAustin Seipp <austin@well-typed.com>2014-02-28 16:28:29 -0600
commit025a66e7fc416ab9ee1df56ad26dfe6232d32900 (patch)
tree0b92d0b0c04ddc88c018165d84b96103a871c9a8 /Makefile
parent71611523c25bb89b81e789d5a2dd3d5d9754b025 (diff)
downloadhaskell-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--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ce67359792..6872cb329d 100644
--- a/Makefile
+++ b/Makefile
@@ -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"