Skip to content

Commit 9a561fd

Browse files
committed
Fix searchpath for modern Perl for genbki.pl
This was fixed for MSVC tools by commit 1df92ee, but per buildfarm member bowerbird genbki.pl needs the same treatment. Backpatch to all live branches. (cherry picked from commit 51884fa)
1 parent a209184 commit 9a561fd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/backend/catalog/genbki.pl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
#
1515
#----------------------------------------------------------------------
1616

17+
use File::Basename;
18+
use File::Spec;
19+
BEGIN { use lib File::Spec->rel2abs(dirname(__FILE__)); }
20+
1721
use Catalog;
1822

1923
use strict;

0 commit comments

Comments
 (0)