]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Make sure we install all of the support scripts.
authorRyan Bloom <rbb@apache.org>
Thu, 4 Oct 2001 19:09:58 +0000 (19:09 +0000)
committerRyan Bloom <rbb@apache.org>
Thu, 4 Oct 2001 19:09:58 +0000 (19:09 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91290 13f79535-47bb-0310-9956-ffa450edef68

support/Makefile.in

index c64375948f2f95e2bbb52f1930d697e010f6f8a7..3b67ba11e2818903659a793e9d6597a86739eba0 100644 (file)
@@ -14,12 +14,12 @@ include $(top_builddir)/build/rules.mk
 install:
        @test -d $(bindir) || $(MKINSTALLDIRS) $(bindir)
        @cp -p $(top_builddir)/server/httpd.exp $(libexecdir)
-       @cp -p apachectl $(sbindir)
-       chmod 755 $(sbindir)/apachectl
-       @if test -f $(builddir)/apxs; then \
-           cp -p apxs $(sbindir); \
-           chmod 755 $(sbindir)/apxs; \
-       fi
+       @for i in apachectl dbmmanage; do \
+           if test -f "$(builddir)/$$i"; then \
+               cp -p $$i $(sbindir); \
+               chmod 755 $(sbindir)/$$i; \
+           fi ; \
+       done
 
 htpasswd_OBJECTS = htpasswd.lo
 htpasswd: $(htpasswd_OBJECTS)