X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=distrib%2FMakefile-bin.in;h=0fd77273033b4e36251207aad75326f47a3c1a41;hb=8b2dda501ed0bbf61d2ac31fbc4e0cfa6cc3aa31;hp=f5baeddce24b54fead5faece09e91a73279317f0;hpb=430e22a77214165059eb8fc0022cb09970a3cc5a;p=ghc-hetmet.git diff --git a/distrib/Makefile-bin.in b/distrib/Makefile-bin.in index f5baedd..0fd7727 100644 --- a/distrib/Makefile-bin.in +++ b/distrib/Makefile-bin.in @@ -91,7 +91,7 @@ INSTALL_DIR = ./mkdirhier # to be created, i.e., create a symlink, ghc-$(version), pointing to ghc to # avoid version vertigo. # -VERSION_SYMLINKS_FOR=$(package) +VERSION_SYMLINKS_FOR=$(PACKAGE_LINKS) # Binaries to install PACKAGE_BIN_INSTALL=$(PACKAGE_PRL_SCRIPTS) $(PACKAGE_SH_SCRIPTS) @@ -184,9 +184,17 @@ install-dirs :: (cd lib/$(platform); find . -type d -exec sh -c '../../$(INSTALL_DIR) $$0 $(libdir)/$$0' {} \; ) (cd share; find . -type d -exec sh -c '../$(INSTALL_DIR) $(datadir)/$$0' {} \; ) -install :: config-pkgs install-dirs install-bin install-libs install-datas +install :: config-pkgs install-dirs install-bin install-libs install-datas postinstall -.PHONY: install-bin install-libs install-datas +.PHONY: install-bin install-libs install-datas postinstall + +postinstall: + if test -x "./post-install-script" ; then \ + echo "Running project-specific post-install script ..." ; \ + ./post-install-script $(platform) $(prefix) \ + $(package)-$(version); \ + echo "Done" ; \ + fi install-bin: for i in $(PACKAGE_BIN_INSTALL) ""; do \ @@ -195,15 +203,15 @@ install-bin: for i in $(PACKAGE_BINS) ""; do \ if test -n "$$i" ; then $(INSTALL_BIN) bin/$(platform)/$$i$(exeext) $(bindir); fi; \ done; - for i in $(VERSION_SYMLINKS_FOR) ""; do \ + @for i in $(VERSION_SYMLINKS_FOR) ""; do \ if [ "x$$i" != "x" ]; then \ ( cd $(bindir); \ if ( $(PERL) -e '$$fn="'$$i'"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \ - echo "Creating a symbol link from $$i-$(version) to $$i"; \ + echo "Creating a symbolic link from $$i-$(version) to $$i"; \ $(RM) $$i; \ $(LN_S) $$i-$(version) $$i; \ else \ - echo "Creating a symbol link from $$i-$(version) to $$i failed: \`$$i' already exists"; \ + echo "Creating a symbolic link from $$i-$(version) to $$i failed: \`$$i' already exists"; \ echo "Perhaps remove \`$$i' manually?"; \ exit 1; \ fi;\