Skip to content

Commit

Permalink
*.pp -> *.pd so pdlpp_mkgen finds
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Sep 17, 2015
1 parent 42429ca commit d0f49a6
Show file tree
Hide file tree
Showing 11 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Basic/Makefile.PL
Expand Up @@ -5,7 +5,7 @@ if (defined(&PDL::indx)) {
}

eval q{
$package = ["stats_basic.pp",Basic,PDL::Stats::Basic];
$package = ["stats_basic.pd",Basic,PDL::Stats::Basic];
%hash = pdlpp_stdargs($package);
WriteMakefile( %hash );
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion Distr/Makefile.PL
Expand Up @@ -2,7 +2,7 @@ use PDL::Core::Dev;
use ExtUtils::MakeMaker;
PDL::Core::Dev->import();

$package = ["distr.pp",Distr,PDL::Stats::Distr];
$package = ["distr.pd",Distr,PDL::Stats::Distr];
%hash = pdlpp_stdargs($package);

chomp( my $libgsl = `gsl-config --libs` );
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion GLM/Makefile.PL
Expand Up @@ -9,7 +9,7 @@ if ($PDL::VERSION =~ /^2\.4\.7/) {
exit;
}

$package = ["glm.pp",GLM,PDL::Stats::GLM];
$package = ["glm.pd",GLM,PDL::Stats::GLM];
%hash = pdlpp_stdargs($package);

WriteMakefile( %hash );
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion Kmeans/Makefile.PL
Expand Up @@ -2,7 +2,7 @@
use ExtUtils::MakeMaker;
PDL::Core::Dev->import();

$package = ["kmeans.pp",Kmeans,PDL::Stats::Kmeans];
$package = ["kmeans.pd",Kmeans,PDL::Stats::Kmeans];
%hash = pdlpp_stdargs($package);

WriteMakefile( %hash );
Expand Down
File renamed without changes.
10 changes: 5 additions & 5 deletions MANIFEST
Expand Up @@ -4,24 +4,24 @@ Makefile.PL
add_doc.pl
README.md
Stats.pm
Basic/stats_basic.pp
Basic/stats_basic.pd
Basic/Makefile.PL
Distr/distr.pp
Distr/distr.pd
Distr/Makefile.PL
Distr/t/stats_distr.t
GLM/glm.pp
GLM/glm.pd
GLM/Makefile.PL
GSL/gsl_cdf.pd
GSL/Makefile.PL
GSL/t/cdf.t
Kmeans/kmeans.pp
Kmeans/kmeans.pd
Kmeans/Makefile.PL
t/01-checkmanifest.t
t/stats_basic.t
t/stats_glm.t
t/stats_ols_rptd.t
t/stats_kmeans.t
t/stats_ts.t
TS/ts.pp
TS/ts.pd
TS/Makefile.PL
xt/00-check-changelog.t
2 changes: 1 addition & 1 deletion TS/Makefile.PL
Expand Up @@ -2,7 +2,7 @@
use ExtUtils::MakeMaker;
PDL::Core::Dev->import();

$package = ["ts.pp",TS,PDL::Stats::TS];
$package = ["ts.pd",TS,PDL::Stats::TS];
%hash = pdlpp_stdargs($package);

WriteMakefile( %hash );
Expand Down
File renamed without changes.

0 comments on commit d0f49a6

Please sign in to comment.