diff options
author | Noah Misch <noah@leadboat.com> | 2014-07-23 00:35:07 -0400 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2014-07-23 00:36:21 -0400 |
commit | 48aa0032c454a73ca70f192c122508eb4ee38e28 (patch) | |
tree | d319d3c8dc3d97c3b8d08d3dddcdc901b78a2723 /src | |
parent | 3c5232ae83cd7055a1858db4ca46031578e2fd70 (diff) |
MSVC: Substitute $(top_builddir) in REGRESS_OPTS.
Commit d7cdf6ee36adeac9233678fb8f2a112e6678a770 introduced a usage
thereof. Back-patch to 9.0, like that commit.
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/msvc/vcregress.pl | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/tools/msvc/vcregress.pl b/src/tools/msvc/vcregress.pl index cc067ca5448..8fd6cd40151 100644 --- a/src/tools/msvc/vcregress.pl +++ b/src/tools/msvc/vcregress.pl @@ -249,9 +249,13 @@ sub fetchRegressOpts if ($m =~ /^\s*REGRESS_OPTS\s*=(.*)/m) { - # ignore options that use makefile variables - can't handle those - # ignore anything that isn't an option staring with -- - @opts = grep { $_ !~ /\$\(/ && $_ =~ /^--/ } split(/\s+/,$1); + # Substitute known Makefile variables, then ignore options that retain + # an unhandled variable reference. Ignore anything that isn't an + # option starting with "--". + @opts = grep { + s/\Q$(top_builddir)\E/\"$topdir\"/; + $_ !~ /\$\(/ && $_ =~ /^--/ + } split(/\s+/, $1); } if ($m =~ /^\s*ENCODING\s*=\s*(\S+)/m) { |