triceps
view release on metacpan or search on metacpan
perl/Triceps/Makefile.PL view on Meta::CPAN
use 5.008000;
use ExtUtils::MakeMaker;
# Read the parameters from Triceps Makefiles
delete $ENV{MAKEFLAGS}; # these cause spurious messages from make
delete $ENV{MAKELEVEL};
# Some broken Perl builds return the non-0 code, this handles them.
my $xxx = `echo xxx`;
die "The shell calling does not seem to work: $!\n(got '$xxx')" unless ($xxx eq "xxx\n");
my $exp_bang = $!;
my $exp_err = $?;
my $TRICEPS_CONF = `make --quiet -f ../../cpp/Makefile.inc getconf`;
die "Failed to read the configuration: $!" if ($! != $exp_bang);
( run in 0.251 second using v1.01-cache-2.11-cpan-8d75d55dd25 )