diff options
author | Ian Lynagh <igloo@earth.li> | 2009-05-04 10:40:26 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-05-04 10:40:26 +0000 |
commit | 5eb445c891b8e84e4c003a49c4cafea5205015a1 (patch) | |
tree | 866a491395f0994bb6c6b78197a03cbc938ea5e3 | |
parent | 90631447f6517d757edfeb4a5b4cd7dd6c02ffca (diff) | |
download | haskell-5eb445c891b8e84e4c003a49c4cafea5205015a1.tar.gz |
Put install-sh into bindists
-rw-r--r-- | ghc.mk | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -716,7 +716,7 @@ install_packages: libffi/package.conf.install rts/package.conf.install $(eval $(call bindist,.,\ LICENSE \ - configure config.sub config.guess \ + configure config.sub config.guess install-sh \ extra-gcc-opts.in \ Makefile \ mk/config.mk.in \ @@ -742,7 +742,7 @@ $(eval $(call bindist,.,\ binary-dist: $(RM) -rf $(BIN_DIST_NAME) mkdir $(BIN_DIST_NAME) - set -e; for i in LICENSE compiler ghc rts libraries utils gmp docs libffi includes driver mk rules Makefile aclocal.m4 config.sub config.guess extra-gcc-opts.in ghc.mk inplace; do ln -s ../$$i $(BIN_DIST_NAME)/; done + set -e; for i in LICENSE compiler ghc rts libraries utils gmp docs libffi includes driver mk rules Makefile aclocal.m4 config.sub config.guess install-sh extra-gcc-opts.in ghc.mk inplace; do ln -s ../$$i $(BIN_DIST_NAME)/; done ln -s ../distrib/configure-bin.ac $(BIN_DIST_NAME)/configure.ac cd $(BIN_DIST_NAME) && autoreconf $(RM) -f $(BIN_DIST_TAR) |