summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2001-12-12 09:08:20 +0000
committerjerenkrantz <jerenkrantz@13f79535-47bb-0310-9956-ffa450edef68>2001-12-12 09:08:20 +0000
commit7863c46eb57a208adcf01f2248082c7564f3012f (patch)
treec820de74345c70863de79222a7974351aacdf448 /Makefile.in
parent4326d02fb0126f4c584a19f07412dadd7dc07107 (diff)
downloadlibapr-7863c46eb57a208adcf01f2248082c7564f3012f.tar.gz
If bindir doesn't exist, create it.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62633 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 4ec8ef151..9b4fda004 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -68,6 +68,9 @@ install: $(TARGET_LIB)
$(LIBTOOL) --mode=install cp $(TARGET_LIB) $(libdir)
$(LIBTOOL) --mode=install cp APRVARS $(libdir)
$(LIBTOOL) --mode=install cp apr.exp $(libdir)
+ if [ ! -d $(bindir) ]; then \
+ $(top_srcdir)/build/mkdir.sh $(bindir); \
+ fi;
$(LIBTOOL) --mode=install cp apr-config $(bindir)
chmod 755 $(bindir)/apr-config
@if [ $(INSTALL_SUBDIRS) != "none" ]; then \