diff options
author | Justin Erenkrantz <jerenkrantz@apache.org> | 2004-11-28 19:00:49 +0000 |
---|---|---|
committer | Justin Erenkrantz <jerenkrantz@apache.org> | 2004-11-28 19:00:49 +0000 |
commit | 78a6665f96cb9d9e658e243ee474881ad0df57e8 (patch) | |
tree | 892d471f8670f0888f8c537bd557341609a71f5b /Makefile.in | |
parent | 5c0f6fbc720bd3d361e314e2997f3222d3504cac (diff) | |
download | apr-78a6665f96cb9d9e658e243ee474881ad0df57e8.tar.gz |
* Makefile.in: install.sh can not handle wildcards, so expand out with for loop.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@106831 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 0c29cba8a..b5daddfdb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -69,7 +69,9 @@ install: $(TARGET_LIB) apr-config.out build/apr_rules.out $(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) |