diff options
author | Joe Orton <jorton@apache.org> | 2004-02-03 20:37:34 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2004-02-03 20:37:34 +0100 |
commit | 634513a345a8ed67c61f4ca81c5ac98164009171 (patch) | |
tree | 36c68e1560666ac60e21071e0c5fe5c862ced699 /support/Makefile.in | |
parent | Re-synch with 2.0 stable branch after backport. (diff) | |
download | apache2-634513a345a8ed67c61f4ca81c5ac98164009171.tar.xz apache2-634513a345a8ed67c61f4ca81c5ac98164009171.zip |
* support/Makefile.in (suexec): Don't link against libapr etc; suexec
is self-contained.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102491 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support/Makefile.in')
-rw-r--r-- | support/Makefile.in | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/support/Makefile.in b/support/Makefile.in index 003c8313ca..9c0ba751bb 100644 --- a/support/Makefile.in +++ b/support/Makefile.in @@ -57,9 +57,7 @@ checkgid_OBJECTS = checkgid.lo checkgid: $(checkgid_OBJECTS) $(LINK) $(checkgid_LTFLAGS) $(checkgid_OBJECTS) $(PROGRAM_LDADD) -# suexec must be statically compiled. Otherwise it is not relocatable, -# since LD_* environment variables are ignored in setuid programs. suexec_OBJECTS = suexec.lo suexec: $(suexec_OBJECTS) - $(LINK) -static $(suexec_OBJECTS) $(PROGRAM_LDADD) + $(LINK) $(suexec_OBJECTS) |