Return-Path: Mailing-List: contact commits-help@apr.apache.org; run by ezmlm Delivered-To: mailing list commits@apr.apache.org Received: (qmail 41759 invoked by uid 99); 28 Nov 2004 18:59:39 -0000 X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Sun, 28 Nov 2004 10:59:37 -0800 Received: (qmail 10783 invoked by uid 65534); 28 Nov 2004 18:59:36 -0000 Date: 28 Nov 2004 18:59:36 -0000 Message-ID: <20041128185936.10777.qmail@minotaur.apache.org> From: jerenkrantz@apache.org To: commits@apr.apache.org Subject: svn commit: r106830 - /apr/apr-util/trunk/Makefile.in MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Virus-Checked: Checked Author: jerenkrantz Date: Sun Nov 28 10:59:35 2004 New Revision: 106830 URL: http://svn.apache.org/viewcvs?view=rev&rev=106830 Log: * Makefile.in: install.sh can not handle wildcards, so expand out with for loop. Modified: apr/apr-util/trunk/Makefile.in Modified: apr/apr-util/trunk/Makefile.in Url: http://svn.apache.org/viewcvs/apr/apr-util/trunk/Makefile.in?view=diff&rev=106830&p1=apr/apr-util/trunk/Makefile.in&r1=106829&p2=apr/apr-util/trunk/Makefile.in&r2=106830 ============================================================================== --- apr/apr-util/trunk/Makefile.in (original) +++ apr/apr-util/trunk/Makefile.in Sun Nov 28 10:59:35 2004 @@ -56,8 +56,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 ); \