diff options
author | Attila Molnar <attilamolnar@hush.com> | 2016-11-08 14:47:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-08 14:47:04 +0100 |
commit | 1457c8738c707bddde4bb73fafcb618c24be9abe (patch) | |
tree | 6e0c570d976dc420158fd9f6fdeb0c2e6c675ffa /tools/test-build | |
parent | b841e4bb855f43533601171fb405c74f04b4ea71 (diff) | |
parent | 1d45a7264c01669a046e803d206dd3553fbc5c55 (diff) |
Merge pull request #1246 from SaberUK/master+perl
Update build system for the removal of . from @INC.
Diffstat (limited to 'tools/test-build')
-rwxr-xr-x | tools/test-build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/test-build b/tools/test-build index 17c98042b..2b9ee4ee2 100755 --- a/tools/test-build +++ b/tools/test-build @@ -30,6 +30,9 @@ use feature ':5.10'; use strict; use warnings FATAL => qw(all); +use FindBin qw($RealDir); + +use lib $RealDir; use make::common; use make::configure; |