Update build scripts for Perl update.

This is copied from psychonic's SourceMod fixes.
This commit is contained in:
David Anderson 2023-01-17 21:22:53 -08:00
parent ff2b5142f9
commit 0f9ec96ff9
3 changed files with 7 additions and 1 deletions

View File

@ -9,6 +9,8 @@ use File::Path;
my ($myself, $path) = fileparse($0);
chdir($path);
use FindBin;
use lib $FindBin::Bin;
require 'helpers.pm';
#Go back above build dir

View File

@ -29,6 +29,8 @@ chomp $ftp_path;
my ($myself, $path) = fileparse($0);
chdir($path);
use FindBin;
use lib $FindBin::Bin;
require 'helpers.pm';
my ($version);
@ -155,4 +157,4 @@ $ftp->close();
print "Files sent to drop site -- build succeeded.\n";
exit(0);
exit(0);

View File

@ -5,6 +5,8 @@ use File::Basename;
my ($myself, $path) = fileparse($0);
chdir($path);
use FindBin;
use lib $FindBin::Bin;
require 'helpers.pm';
chdir('../../../OUTPUT');