From 7b556b76b3cb427dc4236e6f4a12f3ffc48c6d6a Mon Sep 17 00:00:00 2001 From: simonmar Date: Fri, 20 Sep 2002 13:08:42 +0000 Subject: [PATCH] [project @ 2002-09-20 13:08:42 by simonmar] Fix the install-datas target when $(INSTALL) is ./install-sh --- distrib/Makefile-bin.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/distrib/Makefile-bin.in b/distrib/Makefile-bin.in index 431ed1f..4372ea9 100644 --- a/distrib/Makefile-bin.in +++ b/distrib/Makefile-bin.in @@ -237,7 +237,9 @@ install-libs: (cd lib/$(platform); find . -type f -exec sh -c '$(CP) $$0 $(libdir)/$$0' {} \; ) install-datas: - (cd share; find . -type f -exec sh -c '$(INSTALL_DATA) $$0 $(datadir)/$$0' {} \; ) + for i in `(cd share; find . -type f )`; do \ + $(INSTALL_DATA) share/$$i $(datadir)/$$i; \ + done show-install-setup: @echo "Install setup..." -- 1.7.10.4