compilation error in Install.pm
frankfranks opened this issue · 1 comments
frankfranks commented
Needed to bring in "catdir" for ./Build to even run.
diff --git a/inc/Library/Build/Install.pm b/inc/Library/Build/Install.pm
index e80ac76..f401aa3 100644
--- a/inc/Library/Build/Install.pm
+++ b/inc/Library/Build/Install.pm
@@ -7,7 +7,7 @@ use warnings FATAL => 'all';
our $VERSION = '0.003';
use ExtUtils::Install qw/install uninstall/;
-use File::Spec::Functions qw/catfile/;
+use File::Spec::Functions qw/catfile catdir/;
sub install_dirs_for {
my ($builder, $location) = @_;
Leont commented
Oops, don't know how that ended up on github. This is embarrassing! I just fixed and pushed it.