| 123456789101112131415161718192021222324252627282930313233343536 |
- Index: CPAN-1.9402/Makefile.PL
- --- CPAN-1.9402/Makefile.PL.orig 2007-11-05 23:51:52 +0100
- +++ CPAN-1.9402/Makefile.PL 2008-03-15 17:43:50 +0100
- @@ -131,7 +131,7 @@
- my $cmd;
- if ($cmd = MM->maybe_command($abs)) {
- print "Importing PAUSE public key into your GnuPG keychain... ";
- - system($cmd, '--quiet', '--import', <PAUSE*.pub>);
- + # system($cmd, '--quiet', '--import', <PAUSE*.pub>);
- print "done!\n";
- print "(You may wish to trust it locally with 'gpg --lsign-key 450F89EC')\n";
- last;
- Index: ExtUtils-PkgConfig-1.12/Makefile.PL
- --- ExtUtils-PkgConfig-1.12/Makefile.PL.orig 2008-03-15 00:19:41 +0100
- +++ ExtUtils-PkgConfig-1.12/Makefile.PL 2008-03-15 22:04:47 +0100
- @@ -5,19 +5,6 @@
- # don't go any further if pkg-config cannot be found.
- my $have_pkg_config = `pkg-config --version`;
-
- -if ($have_pkg_config eq "") {
- - # Warn and exit with status 0 to indicate (to the user and the CPAN
- - # testers infrastructure) that this module won't work on this machine.
- - warn <<"__EOW__";
- -***
- -*** ExtUtils::PkgConfig requires the pkg-config utility, but it doesn't
- -*** seem to be in your PATH. Is it correctly installed?
- -*** PATH=$ENV{PATH}
- -***
- -__EOW__
- - exit 0;
- -}
- -
- WriteMakefile(
- # FIXME this doesn't work very well with native win32 perl
- 'dist' => {
|