Skip to content

Commit

Permalink
fix for pdlpp_mkgen: cannot convert 'Lib/Transform/Proj4/Proj4.pd'
Browse files Browse the repository at this point in the history
  • Loading branch information
kmx committed May 25, 2015
1 parent 72682a7 commit 741c8cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Basic/Core/Dev.pm
Expand Up @@ -515,7 +515,7 @@ sub pdlpp_mkgen {
$prefix = "$dir/GENERATED/$prefix";
File::Path::mkpath(dirname($prefix));
#there is no way to use PDL::PP from perl code, thus calling via system()
my @in = map { "-I$_" } @INC;
my @in = map { "-I$_" } @INC, 'inc';
my $rv = system($^X, @in, "-MPDL::PP qw[$mod $mod $prefix]", $pd);
if ($rv == 0 && -f "$prefix.pm") {
$added{$manifestpm} = "mod=$mod pd=$pd (added by pdlpp_mkgen)";
Expand Down

0 comments on commit 741c8cb

Please sign in to comment.