summaryrefslogtreecommitdiffstats
path: root/t/helper.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/helper.pm')
-rw-r--r--t/helper.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/t/helper.pm b/t/helper.pm
index c06d1202..950c3c65 100644
--- a/t/helper.pm
+++ b/t/helper.pm
@@ -1,6 +1,7 @@
package helper;
use Test::More;
+use Cwd 'getcwd';
use Config;
use urpm::select;
use urpm::util;
@@ -25,6 +26,9 @@ sub set_path() {
my $blib_script = dirname($_) . "/script";
-d $blib_script ? $blib_script : ();
} split(':', $ENV{PERL5LIB})));
+
+ # Fallback to bundled genhdlist2/gendistrib if not installed:
+ $ENV{PATH} .= ':' . getcwd();
}
my $using_root;