Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c92e66 commit ad083e4Copy full SHA for ad083e4
src/tools/msvc/Solution.pm
@@ -87,6 +87,7 @@ sub DeterminePlatform
87
sub IsNewer
88
{
89
my ($newfile, $oldfile) = @_;
90
+ -e $oldfile or warn "source file \"$oldfile\" does not exist";
91
if ( $oldfile ne 'src/tools/msvc/config.pl'
92
&& $oldfile ne 'src/tools/msvc/config_default.pl')
93
@@ -321,7 +322,7 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY
321
322
if ($self->{options}->{python}
323
&& IsNewer(
324
'src/pl/plpython/spiexceptions.h',
- 'src/include/backend/errcodes.txt'))
325
+ 'src/backend/utils/errcodes.txt'))
326
327
print "Generating spiexceptions.h...\n";
328
system(
0 commit comments