fix for newer bash 2. if this works as expected, I'll propogate it to the other makefiles.

This commit is contained in:
Bill Currie 2000-03-23 22:44:33 +00:00
parent 340179389b
commit 8101db3629

View file

@ -107,9 +107,11 @@ clean: $(CLEAN_TARGETS)
install: $(targets) install: $(targets)
$(PROJECT_DIR)/mkinstalldirs $(DESTDIR)/$(bindir) $(PROJECT_DIR)/mkinstalldirs $(DESTDIR)/$(bindir)
for i in $(targets); do \ for i in x-dummy $(targets); do \
$(PROJECT_DIR)/install-sh -m 755 $(BUILD_DIR)/../$$i \ if test "$i" -ne x-dummy; then \
$(DESTDIR)/$(bindir)/$$i; \ $(PROJECT_DIR)/install-sh -m 755 $(BUILD_DIR)/../$$i \
$(DESTDIR)/$(bindir)/$$i; \
fi \
done done
check: check: