summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorGreg Ames <gregames@apache.org>2001-03-02 15:46:14 +0000
committerGreg Ames <gregames@apache.org>2001-03-02 15:46:14 +0000
commit5c21e3c3fddd2402d093dd50201ad0aea9d49045 (patch)
tree8ea56c5d86d3a5739d04a32c468f98d10a6a5acb /Makefile.in
parent4fe069a1b0f17a2da9fe3342067cbfa46518a690 (diff)
downloadhttpd-5c21e3c3fddd2402d093dd50201ad0aea9d49045.tar.gz
fix make install so that suexec is installed where the server expects to
find it ( <prefix>/sbin by default). also enable ./configure --sbindir=DIR to work as advertised. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88422 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 313dc2be34..07b082ace4 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -117,8 +117,8 @@ install-include:
install-suexec:
@if test -f $(builddir)/support/suexec; then \
- $(MKINSTALLDIRS) $(bindir)/sbin; \
- cp -p $(srcdir)/support/suexec $(bindir)/sbin; \
+ test -d $(sbindir) || $(MKINSTALLDIRS) $(sbindir); \
+ cp -p $(srcdir)/support/suexec $(sbindir); \
fi
suexec: