diff options
author | Joe Orton <jorton@apache.org> | 2018-07-18 11:02:18 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2018-07-18 11:02:18 +0200 |
commit | 9c10bd61516f1cf61957024b806b41dca0f74c33 (patch) | |
tree | 890e229bc0880f821ffdd2c4d7a80a6c1e07b7da /Makefile.in | |
parent | * using the, hopefully correct, ever elusive libressl version numbering chec... (diff) | |
download | apache2-9c10bd61516f1cf61957024b806b41dca0f74c33.tar.xz apache2-9c10bd61516f1cf61957024b806b41dca0f74c33.zip |
* 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.in | 6 |
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 |