summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2004-06-23 11:45:41 +0000
committerjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2004-06-23 11:45:41 +0000
commitdff74a633a0eb6e9452c3fe9615f273f61082c6f (patch)
tree40e6116b1f4f144f83f1ded14cbc78b7852a8615
parent070eb0f4b41074d49aa10643d3ca9c87f026f0ec (diff)
downloadlibapr-dff74a633a0eb6e9452c3fe9615f273f61082c6f.tar.gz
* Makefile.in (install): Install mkdir.sh and awk scripts into
installbuilddir so the standalone apr-util build can use them. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65212 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--Makefile.in9
1 files changed, 4 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in
index 2da5152fe..7d9e437d0 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -82,11 +82,10 @@ install: $(TARGET_LIB) apr-config.out
fi;
if [ -f shlibtool ]; then \
$(LIBTOOL) --mode=install cp shlibtool $(DESTDIR)$(installbuilddir); \
- fi;
- if [ -f build/apr_rules.mk ]; then \
- cp build/apr_rules.mk $(DESTDIR)$(installbuilddir); \
- fi;
-
+ fi
+ for f in mkdir.sh make_exports.awk make_var_export.awk apr_rules.mk; do \
+ test -f build/$${f} && cp build/$${f} $(DESTDIR)$(installbuilddir); \
+ done
if [ ! -d $(DESTDIR)$(bindir) ]; then \
$(top_srcdir)/build/mkdir.sh $(DESTDIR)$(bindir); \
fi;