summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJacob Champion <jchampion@apache.org>2017-05-25 21:18:33 +0000
committerJacob Champion <jchampion@apache.org>2017-05-25 21:18:33 +0000
commita4308d4c64e365feacb95951aff300ad1db1af10 (patch)
treebda9178a1b9da474dbec211015c2376e60dffafb /Makefile.in
parentd3289c73ee5f053dc99ccb8546624017e83cca8b (diff)
downloadhttpd-a4308d4c64e365feacb95951aff300ad1db1af10.tar.gz
httpdunit_gen_cases: separate declarations from calls
This gets around strict compiler warnings. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/httpdunit@1796203 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index f6fac28132..9bba3ac080 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -456,8 +456,11 @@ $(testcase_STUBS): %.tests: %.c
test/httpdunit.cases: $(testcase_SOURCES) | unittest-objdir
for t in $^; do \
- $(top_srcdir)/build/httpdunit_gen_cases.pl < "$$t"; \
+ $(top_srcdir)/build/httpdunit_gen_cases.pl --declaration < "$$t"; \
done > $@
+ for t in $^; do \
+ $(top_srcdir)/build/httpdunit_gen_cases.pl < "$$t"; \
+ done >> $@
test/httpdunit.lo: test/httpdunit.c test/httpdunit.cases | unittest-objdir