X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=f7ab125617e60c79750de36880f4ec3ee71d6b24;hb=refs%2Ftags%2Fv0.13;hp=175227533cc41a6f85f7d197ea2e4c6de9287862;hpb=5fce18d9cd1111ef3703d93bef8baba2a7c8fa10;p=perl%2Fmodules%2FIPC-MorseSignals.git diff --git a/Makefile.PL b/Makefile.PL index 1752275..f7ab125 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -4,8 +4,8 @@ use ExtUtils::MakeMaker; BEGIN { eval { require Config }; - die "You need the Config module to install this distribution, that's what happened" if $@; - Config->import qw/%Config/; + die 'OS unsupported' if $@; + Config->import(qw/%Config/); } my %sigs; @@ -15,13 +15,14 @@ for (qw/USR1 USR2/) { print "Checking if you have SIG$_... "; unless (exists $sigs{$_}) { print "no\n"; - die "Installation stops right here,"; + die 'OS unsupported' if $@; } print "yes\n"; } my $BUILD_REQUIRES = { 'utf8' => 0, + 'Config' => 0, 'Data::Dumper' => 0, 'Exporter' => 0, 'ExtUtils::MakeMaker' => 0, @@ -51,7 +52,6 @@ WriteMakefile( 'Carp' => 0, 'POSIX' => 0, 'Time::HiRes' => 0, - %$BUILD_REQUIRES }, dist => { PREOP => 'pod2text lib/IPC/MorseSignals.pm > $(DISTVNAME)/README; '