diff options
author | Stefan Fritsch <sf@apache.org> | 2011-02-05 22:09:12 +0100 |
---|---|---|
committer | Stefan Fritsch <sf@apache.org> | 2011-02-05 22:09:12 +0100 |
commit | aa6d4e927b245416fd86fd3c18abe9c99c82e364 (patch) | |
tree | e1bd662c978a0c838e9f013bbd05c2e964236b9a /server | |
parent | revert r1066944, r1067177 for now (diff) | |
download | apache2-aa6d4e927b245416fd86fd3c18abe9c99c82e364.tar.xz apache2-aa6d4e927b245416fd86fd3c18abe9c99c82e364.zip |
test_char.h is a dependency, not a source. This seems to fix the occasional
"No rule to make target `server/test_char.h'" errors when doing a parallel
build.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1067525 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server')
-rw-r--r-- | server/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/Makefile.in b/server/Makefile.in index 508c6e1f47..9f9fa13601 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -7,7 +7,6 @@ SUBDIRS = mpm LTLIBRARY_NAME = libmain.la LTLIBRARY_SOURCES = \ - test_char.h \ config.c log.c main.c vhost.c util.c \ util_script.c util_md5.c util_cfgtree.c util_ebcdic.c util_time.c \ connection.c listen.c util_mutex.c mpm_common.c mpm_unix.c \ @@ -16,6 +15,7 @@ LTLIBRARY_SOURCES = \ scoreboard.c error_bucket.c protocol.c core.c request.c provider.c \ eoc_bucket.c eor_bucket.c core_filters.c \ util_expr_parse.c util_expr_scan.c util_expr_eval.c +LTLIBRARY_DEPENDENCIES = test_char.h TARGETS = delete-exports $(LTLIBRARY_NAME) $(CORE_IMPLIB_FILE) export_vars.h httpd.exp |