Blind attempt at fixing Windows build

Broken since fe33a196de.
This commit is contained in:
Alvaro Herrera 2019-02-12 18:29:26 -03:00
parent fe33a196de
commit d357a16997
1 changed files with 2 additions and 2 deletions

View File

@ -276,7 +276,7 @@ sub GenerateFiles
|| IsNewer('fmgr-stamp', '../../../src/include/access/transam.h'))
{
system(
"perl -I ../catalog Gen_fmgrtab.pl -I../../../src/include/ $pg_proc_dat"
"perl -I ../catalog Gen_fmgrtab.pl --include-path ../../../src/include/ $pg_proc_dat"
);
open(my $f, '>', 'fmgr-stamp')
|| confess "Could not touch fmgr-stamp";
@ -527,7 +527,7 @@ EOF
{
chdir('src/backend/catalog');
my $bki_srcs = join(' ../../../src/include/catalog/', @bki_srcs);
system("perl genbki.pl -I../../../src/include/ --set-version=$self->{majorver} $bki_srcs");
system("perl genbki.pl --include-path ../../../src/include/ --set-version=$self->{majorver} $bki_srcs");
open(my $f, '>', 'bki-stamp')
|| confess "Could not touch bki-stamp";
close($f);