summaryrefslogtreecommitdiffstats
path: root/support/Makefile.in
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2001-04-13 02:46:22 +0200
committerRyan Bloom <rbb@apache.org>2001-04-13 02:46:22 +0200
commit575247be29bb32ef84bc649928adf9f053429502 (patch)
treee8e634a84698a99aeea3738630455ab45dc9b714 /support/Makefile.in
parents/apr_signal_thread_func/apr_signal_thread/ (diff)
downloadapache2-575247be29bb32ef84bc649928adf9f053429502.tar.xz
apache2-575247be29bb32ef84bc649928adf9f053429502.zip
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/Makefile.in')
-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)