You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by mi...@apache.org on 2005/01/04 12:39:44 UTC

svn commit: r124097 - /apr/apr/branches/1.0.x/CHANGES /apr/apr/branches/1.0.x/Makefile.in

Author: minfrin
Date: Tue Jan  4 03:39:41 2005
New Revision: 124097

URL: http://svn.apache.org/viewcvs?view=rev&rev=124097
Log:
Make install passed a shell expanded list of header files to the
build/install.sh script, which can only install one file at a time.
Changed to install one header file at a time.

Modified:
   apr/apr/branches/1.0.x/CHANGES
   apr/apr/branches/1.0.x/Makefile.in

Modified: apr/apr/branches/1.0.x/CHANGES
Url: http://svn.apache.org/viewcvs/apr/apr/branches/1.0.x/CHANGES?view=diff&rev=124097&p1=apr/apr/branches/1.0.x/CHANGES&r1=124096&p2=apr/apr/branches/1.0.x/CHANGES&r2=124097
==============================================================================
--- apr/apr/branches/1.0.x/CHANGES	(original)
+++ apr/apr/branches/1.0.x/CHANGES	Tue Jan  4 03:39:41 2005
@@ -1,5 +1,9 @@
 Changes for APR 1.0.2
 
+  *) Make install passed a shell expanded list of header files to the
+     build/install.sh script, which can only install one file at a time.
+     Changed to install one header file at a time. [Graham Leggett]
+
   *) Add a build script to create a solaris package. [Graham Leggett]
 
   *) [NetWare] Fixed some type mismatches in threadproc/netware/proc.c and

Modified: apr/apr/branches/1.0.x/Makefile.in
Url: http://svn.apache.org/viewcvs/apr/apr/branches/1.0.x/Makefile.in?view=diff&rev=124097&p1=apr/apr/branches/1.0.x/Makefile.in&r1=124096&p2=apr/apr/branches/1.0.x/Makefile.in&r2=124097
==============================================================================
--- apr/apr/branches/1.0.x/Makefile.in	(original)
+++ apr/apr/branches/1.0.x/Makefile.in	Tue Jan  4 03:39:41 2005
@@ -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_blddir)/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)