You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by je...@apache.org on 2004/11/28 20:00:50 UTC

svn commit: r106831 - /apr/apr/trunk/Makefile.in

Author: jerenkrantz
Date: Sun Nov 28 11:00:49 2004
New Revision: 106831

URL: http://svn.apache.org/viewcvs?view=rev&rev=106831
Log:
* Makefile.in: install.sh can not handle wildcards, so expand out with for loop.

Modified:
   apr/apr/trunk/Makefile.in

Modified: apr/apr/trunk/Makefile.in
Url: http://svn.apache.org/viewcvs/apr/apr/trunk/Makefile.in?view=diff&rev=106831&p1=apr/apr/trunk/Makefile.in&r1=106830&p2=apr/apr/trunk/Makefile.in&r2=106831
==============================================================================
--- apr/apr/trunk/Makefile.in	(original)
+++ apr/apr/trunk/Makefile.in	Sun Nov 28 11:00:49 2004
@@ -69,7 +69,9 @@
 	$(APR_MKDIR) $(DESTDIR)$(libdir) $(DESTDIR)$(bindir) $(DESTDIR)$(installbuilddir) \
 		     $(DESTDIR)$(libdir)/pkgconfig $(DESTDIR)$(includedir)
 	$(INSTALL_DATA) $(top_blddir)/include/apr.h $(DESTDIR)$(includedir)
-	$(INSTALL_DATA) $(top_srcdir)/include/apr_*.h $(DESTDIR)$(includedir)
+	for f in $(top_srcdir)/include/apr_*.h; do \
+	    $(INSTALL_DATA) $${f} $(DESTDIR)$(includedir); \
+	done
 	$(LIBTOOL) --mode=install $(INSTALL) -m 755 $(TARGET_LIB) $(DESTDIR)$(libdir)
 	$(INSTALL_DATA) apr.exp $(DESTDIR)$(libdir)/apr.exp
 	$(INSTALL_DATA) apr.pc $(DESTDIR)$(libdir)/pkgconfig/$(APR_PCFILE)