diff options
author | Ryan Bloom <rbb@apache.org> | 2001-10-04 21:09:58 +0200 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-10-04 21:09:58 +0200 |
commit | ba75d5097da7de84b91ecba50682d41b8dd24e6f (patch) | |
tree | 232db2bcbe36fa0c2842eda4a75d9e78f15f6140 /support | |
parent | Ah, I didn't see that churn is only used on input - rename the function (diff) | |
download | apache2-ba75d5097da7de84b91ecba50682d41b8dd24e6f.tar.xz apache2-ba75d5097da7de84b91ecba50682d41b8dd24e6f.zip |
Make sure we install all of the support scripts.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91290 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support')
-rw-r--r-- | support/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/support/Makefile.in b/support/Makefile.in index c64375948f..3b67ba11e2 100644 --- a/support/Makefile.in +++ b/support/Makefile.in @@ -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) |