summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2001-04-13 00:46:22 +0000
committerRyan Bloom <rbb@apache.org>2001-04-13 00:46:22 +0000
commit575247be29bb32ef84bc649928adf9f053429502 (patch)
treee8e634a84698a99aeea3738630455ab45dc9b714 /support
parent3cd935cb4542ab63739b8a6fcaa314c379f0c599 (diff)
downloadhttpd-575247be29bb32ef84bc649928adf9f053429502.tar.gz
Do not install the binaries from the support directory twice.
PR: 7490 Submitted by: jun-ichiro hagino <itojun@iijlab.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88836 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support')
-rw-r--r--support/Makefile.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/support/Makefile.in b/support/Makefile.in
index ed1ffc9b70..ff5f6a4e26 100644
--- a/support/Makefile.in
+++ b/support/Makefile.in
@@ -10,6 +10,16 @@ PROGRAM_DEPENDENCIES = \
include $(top_srcdir)/build/rules.mk
+install:
+ @test -d $(bindir) || $(MKINSTALLDIRS) $(bindir)
+ @cp -p httpd.exp $(bindir)
+ @cp -p apachectl $(bindir)
+ chmod 755 $(bindir)/apachectl
+ @if test -f $(builddir)/apxs; then \
+ cp -p apxs $(bindir); \
+ chmod 755 $(bindir)/apxs; \
+ fi
+
htpasswd_OBJECTS = htpasswd.lo
htpasswd: $(htpasswd_OBJECTS)
$(LINK) $(htpasswd_OBJECTS) $(PROGRAM_LDADD)