From: Joe Orton Date: Wed, 10 Dec 2003 15:59:16 +0000 (+0000) Subject: * server/Makefile.in: Revert changes to use an absolute path to X-Git-Tag: pre_ajp_proxy~946 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d2cf3cc260bd41ecdbea1dd536c732f5cdfd4b92;p=thirdparty%2Fapache%2Fhttpd.git * server/Makefile.in: Revert changes to use an absolute path to exports.c in some (but not all) places, and subsequent fallout. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102013 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/Makefile.in b/server/Makefile.in index 16a7782cfe5..698dda6af1b 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -13,7 +13,7 @@ LTLIBRARY_SOURCES = \ util_script.c util_md5.c util_cfgtree.c util_ebcdic.c util_time.c \ connection.c listen.c \ mpm_common.c util_charset.c util_debug.c util_xml.c \ - util_filter.c $(top_builddir)/server/exports.c buildmark.c \ + util_filter.c exports.c buildmark.c \ scoreboard.c error_bucket.c protocol.c core.c request.c provider.c TARGETS = delete-exports $(LTLIBRARY_NAME) $(CORE_IMPLIB_FILE) export_vars.h httpd.exp @@ -60,19 +60,12 @@ export_files: sort -u $$tmp > $@; \ rm -f $$tmp -# full path required to keep BSD make happy -$(top_builddir)/server/exports.c: export_files +exports.c: export_files $(AWK) -f $(top_srcdir)/build/make_exports.awk `cat $?` > $@ export_vars.h: export_files $(AWK) -f $(top_srcdir)/build/make_var_export.awk `cat $?` > $@ -# wtf does this have to be explicit???? -exports.lo: exports.c - -# Needed to allow exports.c to be generated in a parallel build successfully -.NOTPARALLEL: $(top_builddir)/server/exports.c - # Rule to make def file for OS/2 core dll ApacheCoreOS2.def: exports.c export_vars.h $(top_srcdir)/os/$(OS_DIR)/core_header.def cat $(top_srcdir)/os/$(OS_DIR)/core_header.def > $@