[commit: ghc] master: Fix binary-dist target with xz/gzip (025a66e)

git at git.haskell.org git at git.haskell.org
Fri Feb 28 22:29:09 UTC 2014


Repository : ssh://git@git.haskell.org/ghc

On branch  : master
Link       : http://ghc.haskell.org/trac/ghc/changeset/025a66e7fc416ab9ee1df56ad26dfe6232d32900/ghc

>---------------------------------------------------------------

commit 025a66e7fc416ab9ee1df56ad26dfe6232d32900
Author: Austin Seipp <austin at well-typed.com>
Date:   Fri Feb 28 16:28:28 2014 -0600

    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 at well-typed.com>


>---------------------------------------------------------------

025a66e7fc416ab9ee1df56ad26dfe6232d32900
 Makefile |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index ce67359..6872cb3 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"



More information about the ghc-commits mailing list