summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichaelo <michaelo@13f79535-47bb-0310-9956-ffa450edef68>2021-05-25 09:17:12 +0000
committermichaelo <michaelo@13f79535-47bb-0310-9956-ffa450edef68>2021-05-25 09:17:12 +0000
commit5ff1edfb2db4134c2fc611f788965af0531f2192 (patch)
tree61b653496fa9bb33bf97ba0a17379cc2f052b2df
parentc9914da72cb322fbbce998f33dd1ac46f58072dd (diff)
downloadlibapr-5ff1edfb2db4134c2fc611f788965af0531f2192.tar.gz
Backport r1890191 from trunk:
Use portable make variables The usage of '$<' with BSD make results in an empty variable, therefore compilation fails. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.7.x@1890192 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index c2fae660e..7703e3fae 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -133,7 +133,7 @@ etags:
tools/gen_test_char@EXEEXT@: tools/gen_test_char.c
$(APR_MKDIR) tools
- $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $< -o $@
+ $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) tools/gen_test_char.c -o $@
include/private/apr_escape_test_char.h: tools/gen_test_char@EXEEXT@
$(APR_MKDIR) include/private