Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d357a16

Browse files
committed
Blind attempt at fixing Windows build
Broken since fe33a19.
1 parent fe33a19 commit d357a16

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/msvc/Solution.pm

+2-2
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ sub GenerateFiles
276276
|| IsNewer('fmgr-stamp', '../../../src/include/access/transam.h'))
277277
{
278278
system(
279-
"perl -I ../catalog Gen_fmgrtab.pl -I../../../src/include/ $pg_proc_dat"
279+
"perl -I ../catalog Gen_fmgrtab.pl --include-path ../../../src/include/ $pg_proc_dat"
280280
);
281281
open(my $f, '>', 'fmgr-stamp')
282282
|| confess "Could not touch fmgr-stamp";
@@ -527,7 +527,7 @@ EOF
527527
{
528528
chdir('src/backend/catalog');
529529
my $bki_srcs = join(' ../../../src/include/catalog/', @bki_srcs);
530-
system("perl genbki.pl -I../../../src/include/ --set-version=$self->{majorver} $bki_srcs");
530+
system("perl genbki.pl --include-path ../../../src/include/ --set-version=$self->{majorver} $bki_srcs");
531531
open(my $f, '>', 'bki-stamp')
532532
|| confess "Could not touch bki-stamp";
533533
close($f);

0 commit comments

Comments
 (0)