summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2018-07-18 09:02:18 +0000
committerJoe Orton <jorton@apache.org>2018-07-18 09:02:18 +0000
commit9c10bd61516f1cf61957024b806b41dca0f74c33 (patch)
tree890e229bc0880f821ffdd2c4d7a80a6c1e07b7da /Makefile.in
parent005089f8d330debcaa9d50d2233d87059801aef8 (diff)
downloadhttpd-9c10bd61516f1cf61957024b806b41dca0f74c33.tar.gz
* Makefile.in (install-suexec*): Fix make -jN install.
Submitted by: Arkadiusz Miskiewicz <arekm maven.pl> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1836154 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 7285cf00b8..1bd6e779e2 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -274,7 +274,7 @@ install-man:
cd $(DESTDIR)$(manualdir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null || true; \
fi
-install-suexec: install-suexec-binary install-suexec-$(INSTALL_SUEXEC)
+install-suexec: install-suexec-$(INSTALL_SUEXEC)
install-suexec-binary:
@if test -f $(builddir)/support/suexec; then \
@@ -282,12 +282,12 @@ install-suexec-binary:
$(INSTALL_PROGRAM) $(top_builddir)/support/suexec $(DESTDIR)$(sbindir); \
fi
-install-suexec-setuid:
+install-suexec-setuid: install-suexec-binary
@if test -f $(builddir)/support/suexec; then \
chmod 4755 $(DESTDIR)$(sbindir)/suexec; \
fi
-install-suexec-caps:
+install-suexec-caps: install-suexec-binary
@if test -f $(builddir)/support/suexec; then \
setcap 'cap_setuid,cap_setgid+pe' $(DESTDIR)$(sbindir)/suexec; \
fi