From: panne Date: Thu, 15 Jul 1999 18:16:41 +0000 (+0000) Subject: [project @ 1999-07-15 18:16:41 by panne] X-Git-Tag: Approximately_9120_patches~5976 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=7dac00470cce6e96749869b3048e51b8df7c7188;p=ghc-hetmet.git [project @ 1999-07-15 18:16:41 by panne] Patched my previous patch ($ vs $$, && vs if/then/fi). Installing a Happy binary-dist still only creates a happy and no happy-1.6 executable, but this has very probably nothing to do with my changes. --- diff --git a/distrib/Makefile-bin.in b/distrib/Makefile-bin.in index 047f81d..a40ff0d 100644 --- a/distrib/Makefile-bin.in +++ b/distrib/Makefile-bin.in @@ -196,10 +196,10 @@ install :: config-pkgs install-dirs install-bin install-libs install-datas install-bin: for i in $(PACKAGE_BIN_INSTALL) ""; do \ - test -n "$i" && $(INSTALL_BIN) bin/$(platform)/$(package)-$(version)/$$i $(bindir); \ + if test -n "$$i" ; then $(INSTALL_BIN) bin/$(platform)/$(package)-$(version)/$$i $(bindir); fi; \ done; for i in $(PACKAGE_BINS) ""; do \ - test -n "$i" && $(INSTALL_BIN) bin/$(platform)/$(package)-$(version)/$$i$(exeext) $(bindir); \ + if test -n "$$i" ; then $(INSTALL_BIN) bin/$(platform)/$(package)-$(version)/$$i$(exeext) $(bindir); fi; \ done; for i in $(VERSION_SYMLINKS_FOR) ""; do \ if [ "x$$i" != "x" ]; then \