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 e17b38d commit ab8eae0Copy full SHA for ab8eae0
src/tools/msvc/Solution.pm
@@ -90,6 +90,7 @@ sub DeterminePlatform
90
sub IsNewer
91
{
92
my ($newfile, $oldfile) = @_;
93
+ -e $oldfile or warn "source file \"$oldfile\" does not exist";
94
if ( $oldfile ne 'src\tools\msvc\config.pl'
95
&& $oldfile ne 'src\tools\msvc\config_default.pl')
96
@@ -308,7 +309,7 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY
308
309
if ($self->{options}->{python}
310
&& IsNewer(
311
'src\pl\plpython\spiexceptions.h',
- 'src\include\backend\errcodes.txt'))
312
+ 'src\backend\utils\errcodes.txt'))
313
314
print "Generating spiexceptions.h...\n";
315
system(
0 commit comments