summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorMichael Osipov <michaelo@apache.org>2021-05-25 09:17:12 +0000
committerMichael Osipov <michaelo@apache.org>2021-05-25 09:17:12 +0000
commit9d19ad0aaf9382327d86b9188911d2a52f39f58b (patch)
tree61b653496fa9bb33bf97ba0a17379cc2f052b2df /Makefile.in
parente62e205c923931d893d0a5006dfbcc96b9e7fd40 (diff)
downloadapr-9d19ad0aaf9382327d86b9188911d2a52f39f58b.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
Diffstat (limited to 'Makefile.in')
-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