summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2013-10-05 18:50:54 +0000
committerJeff Trawick <trawick@apache.org>2013-10-05 18:50:54 +0000
commit50db7a403dacf76b7ec511c17f094b8063962f9f (patch)
tree7f05ae1f0cdf5ead5f0db09b418a2327c99a0516 /Makefile.in
parent912aa2547f6e884a58861be17dd7fa12c5e9110c (diff)
downloadapr-50db7a403dacf76b7ec511c17f094b8063962f9f.tar.gz
Include @EXEEXT@ in references to gen_test_char in autoconf-based
build in order to fix the build on Windows. PR: 55628 Submitted by: Carlo Bramini <carlo.bramix libero.it> Reviewed by: trawick (This issue is only in trunk, which is unreleased.) git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@1529495 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index 87cdc5f84..b549c4b92 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -52,7 +52,7 @@ LT_VERSION = @LT_VERSION@
@INCLUDE_OUTPUTS@
CLEAN_TARGETS = apr-config.out apr.exp exports.c export_vars.c .make.dirs \
- build/apr_rules.out tools/gen_test_char
+ build/apr_rules.out tools/gen_test_char@EXEEXT@
DISTCLEAN_TARGETS = config.cache config.log config.status \
include/apr.h include/arch/unix/apr_private.h \
libtool $(APR_CONFIG) build/apr_rules.mk apr.pc \
@@ -161,8 +161,8 @@ OBJECTS_gen_test_char = tools/gen_test_char.lo $(LOCAL_LIBS)
tools/gen_test_char@EXEEXT@: $(OBJECTS_gen_test_char)
$(LINK_PROG) $(OBJECTS_gen_test_char) $(ALL_LIBS)
-include/private/apr_escape_test_char.h: tools/gen_test_char
- tools/gen_test_char > include/private/apr_escape_test_char.h
+include/private/apr_escape_test_char.h: tools/gen_test_char@EXEEXT@
+ tools/gen_test_char@EXEEXT@ > $@
LINK_PROG = $(LIBTOOL) $(LTFLAGS) --mode=link $(COMPILE) $(LT_LDFLAGS) \
@LT_NO_INSTALL@ $(ALL_LDFLAGS) -o $@