From 0540c7d2283503bf32283afdaf2bb3d9c066ebd9 Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Tue, 2 Oct 2001 21:53:33 +0000 Subject: [PATCH] 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 --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index 5bba7f5ea4..6c66c8a002 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