From 7dac00470cce6e96749869b3048e51b8df7c7188 Mon Sep 17 00:00:00 2001
From: panne <unknown>
Date: Thu, 15 Jul 1999 18:16:41 +0000
Subject: [PATCH] [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.

---
 distrib/Makefile-bin.in | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/distrib/Makefile-bin.in b/distrib/Makefile-bin.in
index 047f81d60dfe..a40ff0dd4c68 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 		\
-- 
GitLab