mirror of
https://github.com/alliedmodders/metamod-source.git
synced 2025-12-07 02:18:30 +00:00
Fix helpers module path lookup on newer Perl versions.
(cherry picked from commit 510454907a)
This commit is contained in:
parent
b7fcd66cec
commit
3bfd9a1cb7
@ -9,6 +9,8 @@ use File::Path;
|
|||||||
my ($myself, $path) = fileparse($0);
|
my ($myself, $path) = fileparse($0);
|
||||||
chdir($path);
|
chdir($path);
|
||||||
|
|
||||||
|
use FindBin;
|
||||||
|
use lib $FindBin::Bin;
|
||||||
require 'helpers.pm';
|
require 'helpers.pm';
|
||||||
|
|
||||||
#Go back above build dir
|
#Go back above build dir
|
||||||
|
|||||||
@ -26,6 +26,8 @@ chomp $ftp_path;
|
|||||||
my ($myself, $path) = fileparse($0);
|
my ($myself, $path) = fileparse($0);
|
||||||
chdir($path);
|
chdir($path);
|
||||||
|
|
||||||
|
use FindBin;
|
||||||
|
use lib $FindBin::Bin;
|
||||||
require 'helpers.pm';
|
require 'helpers.pm';
|
||||||
|
|
||||||
#Switch to the output folder.
|
#Switch to the output folder.
|
||||||
|
|||||||
@ -6,6 +6,8 @@ use File::Basename;
|
|||||||
my ($myself, $path) = fileparse($0);
|
my ($myself, $path) = fileparse($0);
|
||||||
chdir($path);
|
chdir($path);
|
||||||
|
|
||||||
|
use FindBin;
|
||||||
|
use lib $FindBin::Bin;
|
||||||
require 'helpers.pm';
|
require 'helpers.pm';
|
||||||
|
|
||||||
chdir('../../../OUTPUT');
|
chdir('../../../OUTPUT');
|
||||||
|
|||||||
@ -5,6 +5,8 @@ use File::Basename;
|
|||||||
my ($myself, $path) = fileparse($0);
|
my ($myself, $path) = fileparse($0);
|
||||||
chdir($path);
|
chdir($path);
|
||||||
|
|
||||||
|
use FindBin;
|
||||||
|
use lib $FindBin::Bin;
|
||||||
require 'helpers.pm';
|
require 'helpers.pm';
|
||||||
|
|
||||||
chdir('..');
|
chdir('..');
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user