summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2002-06-03 15:25:11 +0000
committerJeff Trawick <trawick@apache.org>2002-06-03 15:25:11 +0000
commit088354e96852b96da21213254ff394e7d2cb1f10 (patch)
treefadcffa3308f4a42089fe1ece9a96e4f0befe4f0 /Makefile.in
parent383cd946c9b9f7522cbaf6c15a339ad5668e29d7 (diff)
downloadhttpd-088354e96852b96da21213254ff394e7d2cb1f10.tar.gz
On OS/390, the compiler/linker front-end doesn't handle
"-L/path/to/lib after "-o target". After looking into build failures, it turned out that we specify EXTRA_LDFLAGS twice (once before "-o target" and once after "-o target") for httpd and for the support utilities. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95484 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index bea3a0a2bc..ffb895075c 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -4,8 +4,7 @@ CLEAN_SUBDIRS = test
PROGRAM_NAME = $(progname)
PROGRAM_SOURCES = modules.c
-PROGRAM_LDADD = $(EXTRA_LDFLAGS) $(HTTPD_LDFLAGS) \
- $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) $(AP_LIBS)
+PROGRAM_LDADD = $(HTTPD_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) $(AP_LIBS)
PROGRAM_DEPENDENCIES = \
$(BUILTIN_LIBS) \
$(MPM_LIB) \