mirror of
https://github.com/postgres/postgres.git
synced 2026-04-01 07:16:24 -04:00
Treat config.pl as optional in vcregress.pl
This is how build.pl treats it and how it's documented.
This commit is contained in:
parent
908eb1f98b
commit
2e8d954475
1 changed files with 2 additions and 1 deletions
|
|
@ -13,7 +13,8 @@ my $startdir = getcwd();
|
|||
|
||||
chdir "../../.." if (-d "../../../src/tools/msvc");
|
||||
|
||||
require 'src/tools/msvc/config.pl';
|
||||
require 'src/tools/msvc/config_default.pl';
|
||||
require 'src/tools/msvc/config.pl' if (-f 'src/tools/msvc/config.pl');
|
||||
|
||||
# buildenv.pl is for specifying the build environment settings
|
||||
# it should contian lines like:
|
||||
|
|
|
|||
Loading…
Reference in a new issue