diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-08-16 12:37:39 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-08-16 12:37:39 -0400 |
commit | 2b1b68c075986da675b33518a13d124139539fb6 (patch) | |
tree | ba2d46ded4ad437910b6d1f4896050dd5e461ec9 /dh | |
parent | 48ca954737890ff4661fbf88a8d90102bc85a1ec (diff) | |
download | debhelper-2b1b68c075986da675b33518a13d124139539fb6.tar.gz |
avoid loading File::Spec when not needed
Diffstat (limited to 'dh')
-rwxr-xr-x | dh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,6 @@ dh - debhelper command sequencer use strict; use Debian::Debhelper::Dh_Lib; -use File::Spec; =head1 SYNOPSIS @@ -339,6 +338,7 @@ if ($dh{LIST}) { my %addons; for my $inc (@INC) { + eval q{use File::Spec}; my $path = File::Spec->catdir($inc, "Debian/Debhelper/Sequence"); if (-d $path) { for my $module_path (glob "$path/*.pm") { |