Commit d357a169 authored by Alvaro Herrera's avatar Alvaro Herrera

Blind attempt at fixing Windows build

Broken since fe33a196.
parent fe33a196
...@@ -276,7 +276,7 @@ sub GenerateFiles ...@@ -276,7 +276,7 @@ sub GenerateFiles
|| IsNewer('fmgr-stamp', '../../../src/include/access/transam.h')) || IsNewer('fmgr-stamp', '../../../src/include/access/transam.h'))
{ {
system( 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') open(my $f, '>', 'fmgr-stamp')
|| confess "Could not touch fmgr-stamp"; || confess "Could not touch fmgr-stamp";
...@@ -527,7 +527,7 @@ EOF ...@@ -527,7 +527,7 @@ EOF
{ {
chdir('src/backend/catalog'); chdir('src/backend/catalog');
my $bki_srcs = join(' ../../../src/include/catalog/', @bki_srcs); 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') open(my $f, '>', 'bki-stamp')
|| confess "Could not touch bki-stamp"; || confess "Could not touch bki-stamp";
close($f); close($f);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment