Skip to content

Commit

Permalink
NO_MYMETA in all sub-Makefile.PL
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Sep 21, 2024
1 parent 7552952 commit 63c547d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Basic/Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ use PDL::Core::Dev;
$package = ["stats_basic.pd",Basic,PDL::Stats::Basic,undef,1];
%hash = pdlpp_stdargs($package);

WriteMakefile( %hash );
WriteMakefile( %hash, NO_MYMETA => 1 );

sub MY::postamble {pdlpp_postamble($package)};
3 changes: 1 addition & 2 deletions Distr/Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use PDL::Core::Dev;
use ExtUtils::MakeMaker;
PDL::Core::Dev->import();

$package = ["distr.pd",Distr,PDL::Stats::Distr,undef,1];
%hash = pdlpp_stdargs($package);
Expand All @@ -11,7 +10,7 @@ chomp( my $cflags = `gsl-config --cflags` );
if ($libgsl) {
unshift @{ $hash{'LIBS'} }, $libgsl;
$hash{'INC'} .= " $cflags";
WriteMakefile( %hash );
WriteMakefile( %hash, NO_MYMETA => 1 );
sub MY::postamble {pdlpp_postamble($package)};
}
else {
Expand Down
3 changes: 1 addition & 2 deletions GLM/Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
use PDL::Core::Dev;
use ExtUtils::MakeMaker;
PDL::Core::Dev->import();

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

WriteMakefile( %hash );
WriteMakefile( %hash, NO_MYMETA => 1 );

sub MY::postamble {pdlpp_postamble($package)};
3 changes: 1 addition & 2 deletions Kmeans/Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
use PDL::Core::Dev;
use ExtUtils::MakeMaker;
PDL::Core::Dev->import();

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

WriteMakefile( %hash );
WriteMakefile( %hash, NO_MYMETA => 1 );

sub MY::postamble {pdlpp_postamble($package)};
3 changes: 1 addition & 2 deletions TS/Makefile.PL
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
use PDL::Core::Dev;
use ExtUtils::MakeMaker;
PDL::Core::Dev->import();

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

WriteMakefile( %hash );
WriteMakefile( %hash, NO_MYMETA => 1 );

sub MY::postamble {pdlpp_postamble($package)};

0 comments on commit 63c547d

Please sign in to comment.