Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2e8d954

Browse files
committed
Treat config.pl as optional in vcregress.pl
This is how build.pl treats it and how it's documented.
1 parent 908eb1f commit 2e8d954

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/tools/msvc/vcregress.pl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313

1414
chdir "../../.." if (-d "../../../src/tools/msvc");
1515

16-
require 'src/tools/msvc/config.pl';
16+
require 'src/tools/msvc/config_default.pl';
17+
require 'src/tools/msvc/config.pl' if (-f 'src/tools/msvc/config.pl');
1718

1819
# buildenv.pl is for specifying the build environment settings
1920
# it should contian lines like:

0 commit comments

Comments
 (0)