From 8101db36290dd631fa21f5c9bb9ae1e716394ded Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 23 Mar 2000 22:44:33 +0000 Subject: [PATCH] fix for newer bash 2. if this works as expected, I'll propogate it to the other makefiles. --- common/Makefile.in | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/common/Makefile.in b/common/Makefile.in index 1a5f05c..ea3aa7a 100644 --- a/common/Makefile.in +++ b/common/Makefile.in @@ -107,9 +107,11 @@ clean: $(CLEAN_TARGETS) install: $(targets) $(PROJECT_DIR)/mkinstalldirs $(DESTDIR)/$(bindir) - for i in $(targets); do \ - $(PROJECT_DIR)/install-sh -m 755 $(BUILD_DIR)/../$$i \ - $(DESTDIR)/$(bindir)/$$i; \ + for i in x-dummy $(targets); do \ + if test "$i" -ne x-dummy; then \ + $(PROJECT_DIR)/install-sh -m 755 $(BUILD_DIR)/../$$i \ + $(DESTDIR)/$(bindir)/$$i; \ + fi \ done check: