diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-06-21 18:44:59 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-06-21 18:44:59 +0200 |
commit | 0543d35bddd179a96f3ff88bd1103ca392087788 (patch) | |
tree | 530860782ae4ac961ac4c70167abd14a52dbdc5d | |
parent | 3972294e28309fc18baa53999eefe1f937b26b10 (diff) | |
download | drakx-0543d35bddd179a96f3ff88bd1103ca392087788.tar drakx-0543d35bddd179a96f3ff88bd1103ca392087788.tar.gz drakx-0543d35bddd179a96f3ff88bd1103ca392087788.tar.bz2 drakx-0543d35bddd179a96f3ff88bd1103ca392087788.tar.xz drakx-0543d35bddd179a96f3ff88bd1103ca392087788.zip |
perl_checker fix
-rw-r--r-- | perl-install/do_pkgs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/do_pkgs.pm b/perl-install/do_pkgs.pm index 8b56be26c..a8ea89e1e 100644 --- a/perl-install/do_pkgs.pm +++ b/perl-install/do_pkgs.pm @@ -117,7 +117,7 @@ sub _find_file { -e "$::prefix$file"; } else { # assume it's a binary to search in $PATH: - whereis_binary($file, $prefix); + whereis_binary($file, $::prefix); } } |