]> granicus.if.org Git - apache/commitdiff
* Makefile.in (install-suexec*): Fix make -jN install.
authorJoe Orton <jorton@apache.org>
Wed, 18 Jul 2018 09:02:18 +0000 (09:02 +0000)
committerJoe Orton <jorton@apache.org>
Wed, 18 Jul 2018 09:02:18 +0000 (09:02 +0000)
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

Makefile.in

index 7285cf00b8a01d6caf2ad4c073e78a759cef7af6..1bd6e779e2759d509572d3462010e6bb45b2c61c 100644 (file)
@@ -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