[project @ 1999-07-15 18:16:41 by panne]
authorpanne <unknown>
Thu, 15 Jul 1999 18:16:41 +0000 (18:16 +0000)
committerpanne <unknown>
Thu, 15 Jul 1999 18:16:41 +0000 (18:16 +0000)
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.

distrib/Makefile-bin.in

index 047f81d..a40ff0d 100644 (file)
@@ -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           \