This is an automated email from the git hooks/post-receive script. gregoa pushed a commit to branch master in repository libextutils-cbuilder-perl.
commit 75debe83500d28eacc0da09287da4758dd31e46c Author: gregor herrmann <[email protected]> Date: Sat Sep 27 16:48:58 2014 +0200 Add patch to add missing 'use Config;' in Android module. --- debian/patches/series | 1 + debian/patches/use-config.patch | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..2dbb4ef --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +use-config.patch diff --git a/debian/patches/use-config.patch b/debian/patches/use-config.patch new file mode 100644 index 0000000..4a04cb3 --- /dev/null +++ b/debian/patches/use-config.patch @@ -0,0 +1,21 @@ +Description: add missing 'use Config;' + Otherwise we get a compilation error: + . + /usr/bin/perl -wc /usr/share/perl5/ExtUtils/CBuilder/Platform/android.pm + Global symbol "%Config" requires explicit package name at /usr/share/perl5/ExtUtils/CBuilder/Platform/android.pm line 20. +Origin: vendor +Author: gregor herrmann <[email protected]> +Last-Update: 2014-09-27 +Forwarded: https://rt.cpan.org/Ticket/Display.html?id=99175 +Bug: https://rt.cpan.org/Ticket/Display.html?id=99175 + +--- a/lib/ExtUtils/CBuilder/Platform/android.pm ++++ b/lib/ExtUtils/CBuilder/Platform/android.pm +@@ -3,6 +3,7 @@ + use strict; + use File::Spec; + use ExtUtils::CBuilder::Platform::Unix; ++use Config; + + use vars qw(@ISA); + @ISA = qw(ExtUtils::CBuilder::Platform::Unix); -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libextutils-cbuilder-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
