Author: minfrin Date: Tue Jan 4 03:41:54 2005 New Revision: 124098 URL: http://svn.apache.org/viewcvs?view=rev&rev=124098 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-util/branches/1.0.x/CHANGES apr/apr-util/branches/1.0.x/Makefile.in Modified: apr/apr-util/branches/1.0.x/CHANGES Url: http://svn.apache.org/viewcvs/apr/apr-util/branches/1.0.x/CHANGES?view=diff&rev=124098&p1=apr/apr-util/branches/1.0.x/CHANGES&r1=124097&p2=apr/apr-util/branches/1.0.x/CHANGES&r2=124098 ============================================================================== --- apr/apr-util/branches/1.0.x/CHANGES (original) +++ apr/apr-util/branches/1.0.x/CHANGES Tue Jan 4 03:41:54 2005 @@ -1,5 +1,9 @@ Changes with APR-util 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] + *) Rework the LDAP toolkit detection to be more accurate than "OpenLDAP detected regardless", while remaining backwards compatible with v1.0. [Graham Leggett] Modified: apr/apr-util/branches/1.0.x/Makefile.in Url: http://svn.apache.org/viewcvs/apr/apr-util/branches/1.0.x/Makefile.in?view=diff&rev=124098&p1=apr/apr-util/branches/1.0.x/Makefile.in&r1=124097&p2=apr/apr-util/branches/1.0.x/Makefile.in&r2=124098 ============================================================================== --- apr/apr-util/branches/1.0.x/Makefile.in (original) +++ apr/apr-util/branches/1.0.x/Makefile.in Tue Jan 4 03:41:54 2005 @@ -57,8 +57,9 @@ install: $(TARGET_LIB) apu-config.out $(APR_MKDIR) $(DESTDIR)$(includedir) $(DESTDIR)$(libdir)/pkgconfig \ $(DESTDIR)$(libdir) $(DESTDIR)$(bindir) - $(INSTALL_DATA) $(top_srcdir)/include/*.h $(DESTDIR)$(includedir) - $(INSTALL_DATA) $(top_blddir)/include/*.h $(DESTDIR)$(includedir) + for f in $(top_srcdir)/include/*.h $(top_blddir)/include/*.h; do \ + $(INSTALL_DATA) $${f} $(DESTDIR)$(includedir); \ + done $(INSTALL_DATA) apr-util.pc $(DESTDIR)$(libdir)/pkgconfig/$(APRUTIL_PCFILE) list='$(INSTALL_SUBDIRS)'; for i in $$list; do \ ( cd $$i ; $(MAKE) DESTDIR=$(DESTDIR) install ); \
