diff options
author | William A. Rowe Jr <wrowe@apache.org> | 2000-12-07 06:53:46 +0000 |
---|---|---|
committer | William A. Rowe Jr <wrowe@apache.org> | 2000-12-07 06:53:46 +0000 |
commit | de1d163d3f841cffdec28a45610ec4a1532db352 (patch) | |
tree | d255e24bd529ca1e4ad72232bfb78c0bd4f06234 /test/MakeWin32Make.pl | |
parent | 32337d3e23c99e660f2de1da2acbb903a6a78611 (diff) | |
download | apr-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.pl | 1 |
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 ||; |