summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorMichael Osipov <michaelo@apache.org>2021-05-25 09:15:33 +0000
committerMichael Osipov <michaelo@apache.org>2021-05-25 09:15:33 +0000
commit8fad5de8706995ff249a0ddd885d8baa3e1ea35f (patch)
treeb02371552063bd0a181f004c17308a2db25e2783 /Makefile.in
parent4bd79e157ce7907003cb3ee8ec2f62eaf4d3678e (diff)
downloadapr-8fad5de8706995ff249a0ddd885d8baa3e1ea35f.tar.gz
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/trunk@1890191 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 65432042d..bbf531b3e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -165,7 +165,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