diff --git a/support/buildbot/bootstrap.pl b/support/buildbot/bootstrap.pl index 0a96d544..d3f136da 100755 --- a/support/buildbot/bootstrap.pl +++ b/support/buildbot/bootstrap.pl @@ -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 diff --git a/support/buildbot/package.pl b/support/buildbot/package.pl index 10517889..2f71dea3 100755 --- a/support/buildbot/package.pl +++ b/support/buildbot/package.pl @@ -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); \ No newline at end of file +exit(0); diff --git a/support/buildbot/startbuild.pl b/support/buildbot/startbuild.pl index 6b17ddb9..dc4ee322 100755 --- a/support/buildbot/startbuild.pl +++ b/support/buildbot/startbuild.pl @@ -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');