[project @ 2003-07-24 09:29:10 by simonmar]
[ghc-hetmet.git] / distrib / Makefile-bin.in
index 9a06b94..4372ea9 100644 (file)
@@ -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..."
@@ -253,7 +255,9 @@ show-install-setup:
 
 install-docs : install-dirs-docs
        if test -d share/html ; then $(CP) -r share/html/* $(htmldir) ; fi
-       if test -f share/*.ps ; then $(CP) share/*.ps $(psdir) ; fi
+       for i in share/*.ps; do \
+               $(CP) $$i $(psdir) ; \
+       done
 
 install-dirs-docs:
        $(INSTALL_DIR) $(htmldir)