[SCM] Debian packaging of libcrypt-dh-gmp-perl branch, master, updated. 542ddd739c5c2216feef2925c763f25ecf912592

Salvatore Bonaccorso carnil at debian.org
Wed Nov 16 12:56:36 UTC 2011


The following commit has been merged in the master branch:
commit d75897525321dec63d7972d6f4ed1526c058dae0
Author: Salvatore Bonaccorso <carnil at debian.org>
Date:   Wed Nov 16 13:37:36 2011 +0100

    Fix splitting of CCFLAGS and LDFLAGS in Makefile.PL
    
    CCFLAGS and LDFLAGS need to be split into words, not characters
    
    Thanks: Colin Watson <cjwatson at ubuntu.com>
    
    Closes: #648955

diff --git a/debian/patches/series b/debian/patches/series
index 5299247..512e0a2 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
 spelling.patch
+split-flags.patch
diff --git a/debian/patches/split-flags.patch b/debian/patches/split-flags.patch
new file mode 100644
index 0000000..4860e0a
--- /dev/null
+++ b/debian/patches/split-flags.patch
@@ -0,0 +1,27 @@
+Description: Split CCFLAGS and LDFLAGS into words
+Origin: vendor
+Bug: http://bugs.debian.org/648955
+Forwarded: no
+Author: Author: Colin Watson <cjwatson at ubuntu.com>
+Last-Update: 2011-11-16
+
+--- a/Makefile.PL
++++ b/Makefile.PL
+@@ -5,8 +5,8 @@
+     push @DEFINES, '-DVERY_VERBOSE';
+ }
+ 
+-my @CCFLAGS = split(//, $ENV{CCFLAGS} || '');
+-my @LDFLAGS = split(//, $ENV{LDFLAGS} || '');
++my @CCFLAGS = split(' ', $ENV{CCFLAGS} || '');
++my @LDFLAGS = split(' ', $ENV{LDFLAGS} || '');
+ my @INCLUDES;
+ my @LIBPATHS;
+ 
+@@ -60,4 +60,4 @@
+ 
+ test_requires 'Test::More';
+ test_requires 'Test::Requires';
+-WriteAll;
+\ No newline at end of file
++WriteAll;

-- 
Debian packaging of libcrypt-dh-gmp-perl



More information about the Pkg-perl-cvs-commits mailing list