Treat config.pl as optional in vcregress.pl

This is how build.pl treats it and how it's documented.
pull/1/head
Peter Eisentraut 15 years ago
parent 908eb1f98b
commit 2e8d954475
  1. 3
      src/tools/msvc/vcregress.pl

@ -13,7 +13,8 @@ my $startdir = getcwd();
chdir "../../.." if (-d "../../../src/tools/msvc"); 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 # buildenv.pl is for specifying the build environment settings
# it should contian lines like: # it should contian lines like:

Loading…
Cancel
Save