diff options
author | Jeff Trawick <trawick@apache.org> | 2002-06-03 15:25:11 +0000 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2002-06-03 15:25:11 +0000 |
commit | 088354e96852b96da21213254ff394e7d2cb1f10 (patch) | |
tree | fadcffa3308f4a42089fe1ece9a96e4f0befe4f0 /support/Makefile.in | |
parent | 383cd946c9b9f7522cbaf6c15a339ad5668e29d7 (diff) | |
download | httpd-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 'support/Makefile.in')
-rw-r--r-- | support/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/Makefile.in b/support/Makefile.in index 09c95a8a02..9a3747a464 100644 --- a/support/Makefile.in +++ b/support/Makefile.in @@ -4,7 +4,7 @@ DISTCLEAN_TARGETS = apxs apachectl dbmmanage log_server_status \ PROGRAMS = htpasswd htdigest rotatelogs logresolve ab checkgid htdbm TARGETS = $(PROGRAMS) -PROGRAM_LDADD = $(EXTRA_LDFLAGS) $(UTIL_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) $(AP_LIBS) +PROGRAM_LDADD = $(UTIL_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) $(AP_LIBS) PROGRAM_DEPENDENCIES = include $(top_builddir)/build/rules.mk |