Fix searchpath for modern Perl for genbki.pl

This was fixed for MSVC tools by commit 1df92eeafe, but per
buildfarm member bowerbird genbki.pl needs the same treatment.

Backpatch to all live branches.
pull/37/head
Andrew Dunstan 7 years ago
parent 24114e8b4d
commit f884a96819
  1. 4
      src/backend/catalog/genbki.pl

@ -14,6 +14,10 @@
#
#----------------------------------------------------------------------
use File::Basename;
use File::Spec;
BEGIN { use lib File::Spec->rel2abs(dirname(__FILE__)); }
use Catalog;
use strict;

Loading…
Cancel
Save