summaryrefslogtreecommitdiff
path: root/test/MakeWin32Make.pl
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2000-12-07 06:53:46 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2000-12-07 06:53:46 +0000
commitde1d163d3f841cffdec28a45610ec4a1532db352 (patch)
treed255e24bd529ca1e4ad72232bfb78c0bd4f06234 /test/MakeWin32Make.pl
parent32337d3e23c99e660f2de1da2acbb903a6a78611 (diff)
downloadapr-de1d163d3f841cffdec28a45610ec4a1532db352.tar.gz
Fix parsing for mult @EXEEXT@ tags
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@60910 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/MakeWin32Make.pl')
-rw-r--r--test/MakeWin32Make.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/MakeWin32Make.pl b/test/MakeWin32Make.pl
index 4d95511ee..d9c51b4a6 100644
--- a/test/MakeWin32Make.pl
+++ b/test/MakeWin32Make.pl
@@ -24,6 +24,7 @@ while ($t = <$srcfl>) {
$t =~ s|-I\$\(INCDIR\)|\/I "\$\(INCDIR\)"|;
$t =~ s|\.\.\/libapr\.a|\.\./LibD/apr\.lib|;
if ($t =~ s|\@EXEEXT\@|\.exe|) {
+ while ($t =~ s|\@EXEEXT\@|\.exe|) {}
$t =~ s|\$\(CC\) \$\(CFLAGS\)|\$\(LINK\) \/subsystem:console|;
$t =~ s|-o (\S+)|\/out:\"$1\"|;
$t =~ s|--export-dynamic ||;