You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2013/10/05 22:46:27 UTC

svn commit: r1529515 - /apr/apr/trunk/test/Makefile.in

Author: trawick
Date: Sat Oct  5 20:46:27 2013
New Revision: 1529515

URL: http://svn.apache.org/r1529515
Log:
Fix executable file extension on Windows

Modified:
    apr/apr/trunk/test/Makefile.in

Modified: apr/apr/trunk/test/Makefile.in
URL: http://svn.apache.org/viewvc/apr/apr/trunk/test/Makefile.in?rev=1529515&r1=1529514&r2=1529515&view=diff
==============================================================================
--- apr/apr/trunk/test/Makefile.in (original)
+++ apr/apr/trunk/test/Makefile.in Sat Oct  5 20:46:27 2013
@@ -173,7 +173,7 @@ check: $(TESTALL_COMPONENTS) $(STDTEST_P
 	teststatus=0; \
 	progfailed=""; \
 	for prog in $(STDTEST_PORTABLE) $(STDTEST_NONPORTABLE); do \
-	        if test "$$prog" = 'dbd'; then \
+	        if test "$$prog" = 'dbd@EXEEXT@'; then \
 			for driver in none @apu_dbd_tests@; do \
 				if test "$$driver" != 'none'; then \
 					@shlibpath_var@="`echo "../dbm/.libs:../dbd/.libs:$$@shlibpath_var@" | sed -e 's/::*$$//'`" \
@@ -185,7 +185,7 @@ check: $(TESTALL_COMPONENTS) $(STDTEST_P
 					fi; \
 				fi; \
 			done; \
-		elif test "$$prog" = 'sendfile'; then \
+		elif test "$$prog" = 'sendfile@EXEEXT@'; then \
 			for mode in blocking nonblocking timeout; do \
 				@shlibpath_var@="`echo "../dbm/.libs:../dbd/.libs:$$@shlibpath_var@" | sed -e 's/::*$$//'`" \
 				./$$prog client $$mode startserver 127.0.0.1; \