summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2017-09-27 14:58:47 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2017-09-27 14:58:47 +0000
commitfac79428667b0e53f9266006e93ab05087f559b3 (patch)
tree2add091cb7e23efcb0f79a9b945cb54a33e138c3 /build
parentbb9de375685780205ba8eade08df3b3eedacd12b (diff)
downloadapr-fac79428667b0e53f9266006e93ab05087f559b3.tar.gz
Ensure /machine is also corrected
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.7.x@1809859 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rw-r--r--build/fixwin32mak.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/fixwin32mak.pl b/build/fixwin32mak.pl
index 76b7f00ca..6f53987ec 100644
--- a/build/fixwin32mak.pl
+++ b/build/fixwin32mak.pl
@@ -92,7 +92,7 @@ sub fixcwd {
# that we also link here to the default CPU. Omitting the
# /machine spec from the .dsp was not enough, MSVC put it back.
#
- if ($src =~ s#^(LINK32_FLAGS=.*) /machine:(x|IX|I3)86 #$1 #) {
+ if ($src =~ s#^(LINK32_FLAGS=.*) /machine:(x|IX|I3)86 #$1 #i) {
$verchg = -1;
}
print $dstfl $src;