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 1c06590 commit ca853a2Copy full SHA for ca853a2
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
@@ -311,7 +312,7 @@ s{PG_VERSION_STR "[^"]+"}{__STRINGIFY(x) #x\n#define __STRINGIFY2(z) __STRINGIFY
311
312
if ($self->{options}->{python}
313
&& IsNewer(
314
'src\pl\plpython\spiexceptions.h',
- 'src\include\backend\errcodes.txt'))
315
+ 'src\backend\utils\errcodes.txt'))
316
317
print "Generating spiexceptions.h...\n";
318
system(
0 commit comments