]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Do not install the binaries from the support directory twice.
authorRyan Bloom <rbb@apache.org>
Fri, 13 Apr 2001 00:46:22 +0000 (00:46 +0000)
committerRyan Bloom <rbb@apache.org>
Fri, 13 Apr 2001 00:46:22 +0000 (00:46 +0000)
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

CHANGES
Makefile.in
support/Makefile.in

diff --git a/CHANGES b/CHANGES
index f38a6f39632d9e1c1702f0d05fe0c9e21cb29e21..a5b189d8ad2bf0706287058d0c70022a0a448e99 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,5 +1,8 @@
 Changes with Apache 2.0.17-dev
 
+  *) Do not install the binaries from the support directory twice.
+     [jun-ichiro hagino <itojun@iijlab.net>]
+
   *) The ap_f* functions should flush data to the filter that is passed
      in, not the the filter after the one passed in.
      [Ryan Morgan <rmorgan@covalent.net>]
index b5e3bc9ef95b24380aa1dfee2db06f4f18f8dc0b..0c10e6fb5252af2b2e6f95853a746625f14f74ba 100644 (file)
@@ -16,7 +16,7 @@ PROGRAMS        = $(PROGRAM_NAME)
 targets         = $(PROGRAMS) $(other_targets)
 phony_targets   = $(srcdir)/buildmark.c
 install_targets = install-conf install-htdocs install-icons install-other \
-       install-cgi install-include install-support install-suexec
+       install-cgi install-include install-suexec
 DISTCLEAN_TARGETS  = include/ap_config_auto.h include/ap_config_path.h \
        modules.c libtool
 EXTRACLEAN_TARGETS = configure include/ap_config_auto.h.in \
@@ -75,23 +75,6 @@ install-cgi:
        @(cd docs/cgi-examples && cp -rp * $(cgidir))
        @(cd $(cgidir) && find . -name "CVS" -print | xargs rm -rf {} \;)
 
-install-support:
-       @echo Installing Support Binaries
-       @test -d $(bindir) || $(MKINSTALLDIRS) $(bindir)
-       @cp -p $(srcdir)/support/httpd.exp $(bindir)
-       @cp -p $(builddir)/support/htpasswd $(bindir)
-       @cp -p $(builddir)/support/htdigest $(bindir)
-       @cp -p $(builddir)/support/rotatelogs $(bindir)
-       @cp -p $(builddir)/support/logresolve $(bindir)
-       @cp -p $(builddir)/support/ab $(bindir)
-       @cp -p $(builddir)/support/apachectl $(bindir)
-       chmod 755 $(bindir)/apachectl
-       @if test -f $(builddir)/support/apxs; then \
-           cp -p $(builddir)/support/apxs $(bindir); \
-           chmod 755 $(bindir)/apxs; \
-       fi
-
-
 install-other:
        @test -d $(logfiledir) || $(MKINSTALLDIRS) $(logfiledir)
        @for ext in dll x; do \
index ed1ffc9b70c74396afa9a30874326bf27d0e283b..ff5f6a4e265c4fe19b84a0d92924a789fdddad18 100644 (file)
@@ -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)