summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-09-13 22:19:13 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>2001-09-13 22:19:13 +0000
commit663e27ac8bffc0ec38e3b164c13f6ec24055da59 (patch)
treebc924e006dcb7000a50ca97ebea10b8efea73274 /Makefile.in
parent54752e948f98af4d72001c11cdde0757a93dfd6e (diff)
downloadlibapr-663e27ac8bffc0ec38e3b164c13f6ec24055da59.tar.gz
Allow make install to work when built with VPATH.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62321 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 5f06ffb7a..bfa9095a7 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -51,11 +51,11 @@ delete-lib:
install: $(TARGET_LIB)
if [ ! -d $(includedir) ]; then \
- ./build/mkdir.sh $(includedir); \
+ $(srcdir)/build/mkdir.sh $(includedir); \
fi; \
cp include/*.h $(includedir); \
if [ ! -d $(libdir) ]; then \
- ./build/mkdir.sh $(libdir); \
+ $(srcdir)/build/mkdir.sh $(libdir); \
fi; \
$(LIBTOOL) --mode=install cp $(TARGET_LIB) $(libdir)
$(LIBTOOL) --mode=install cp APRVARS $(libdir)