From: Ryan Bloom Date: Tue, 2 Oct 2001 21:53:33 +0000 (+0000) Subject: Suexec is compiled to the builddir, not the source dir. X-Git-Tag: 2.0.26~121 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0540c7d2283503bf32283afdaf2bb3d9c066ebd9;p=thirdparty%2Fapache%2Fhttpd.git Suexec is compiled to the builddir, not the source dir. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91246 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.in b/Makefile.in index 5bba7f5ea45..6c66c8a0021 100644 --- a/Makefile.in +++ b/Makefile.in @@ -138,7 +138,7 @@ install-man: install-suexec: @if test -f $(builddir)/support/suexec; then \ test -d $(sbindir) || $(MKINSTALLDIRS) $(sbindir); \ - $(INSTALL_PROGRAM) $(srcdir)/support/suexec $(sbindir); \ + $(INSTALL_PROGRAM) $(top_builddir)/support/suexec $(sbindir); \ chmod 4755 $(sbindir)/suexec; \ fi