Fix bindist creation
authorIan Lynagh <igloo@earth.li>
Sat, 8 Aug 2009 18:44:07 +0000 (18:44 +0000)
committerIan Lynagh <igloo@earth.li>
Sat, 8 Aug 2009 18:44:07 +0000 (18:44 +0000)
This is a bit kludgy. We've hit the maximum number of arguments you can
have in the for loop for adding files to the bindist list, so this just
splits the list in 2.

ghc.mk
rules/bindist.mk

diff --git a/ghc.mk b/ghc.mk
index f234f39..7792b5a 100644 (file)
--- a/ghc.mk
+++ b/ghc.mk
@@ -781,7 +781,8 @@ install_packages: libffi/package.conf.install rts/package.conf.install
 # -----------------------------------------------------------------------------
 # Binary distributions
 
-$(eval $(call bindist,.,\
+# This is split in 2 because of the shell argument limit
+$(eval $(call bindist,root1,\
     LICENSE \
     configure config.sub config.guess install-sh \
     extra-gcc-opts.in \
@@ -800,6 +801,8 @@ $(eval $(call bindist,.,\
     $(INSTALL_BINS) \
     $(INSTALL_DOCS) \
     $(INSTALL_LIBRARY_DOCS) \
+ ))
+$(eval $(call bindist,root2,\
     $(addsuffix /*,$(INSTALL_HTML_DOC_DIRS)) \
        docs/index.html \
        $(wildcard libraries/*/dist-install/doc/) \
index d1b0403..4762023 100644 (file)
 # $(eval $(call bindist,utils/genapply,ghc.mk))
 
 define bindist
-# $1 = dir
+# $1 = name
 # $2 = files
 
 .PHONY: bindist_$1
 bindist: bindist_$1
 
 bindist_$1:
-       for f in $2; do echo $1/$(BIN_DIST_NAME)/$$$$f >> $(BIN_DIST_LIST); done
+       for f in $2; do echo $(BIN_DIST_NAME)/$$$$f >> $(BIN_DIST_LIST); done
 endef