summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/perl/perl-5.14.2/debian/fixes/hurd-ccflags.diff
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/perl/perl-5.14.2/debian/fixes/hurd-ccflags.diff')
-rw-r--r--meta/recipes-devtools/perl/perl-5.14.2/debian/fixes/hurd-ccflags.diff31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/recipes-devtools/perl/perl-5.14.2/debian/fixes/hurd-ccflags.diff b/meta/recipes-devtools/perl/perl-5.14.2/debian/fixes/hurd-ccflags.diff
deleted file mode 100644
index 68227205bb..0000000000
--- a/meta/recipes-devtools/perl/perl-5.14.2/debian/fixes/hurd-ccflags.diff
+++ /dev/null
@@ -1,31 +0,0 @@
1Upstream-Status:Inappropriate [debian patches]
2From f66e8575cb0ca11171f43efe0f9e3c6e790b75bc Mon Sep 17 00:00:00 2001
3From: Samuel Thibault <sthibault@debian.org>
4Date: Wed, 4 Aug 2010 13:34:05 +0300
5Subject: Make hints/gnu.sh append to $ccflags rather than overriding them
6
7Bug: http://rt.perl.org/rt3/Public/Bug/Display.html?id=92244
8Bug-Debian: http://bugs.debian.org/587901
9Origin: upstream, http://perl5.git.perl.org/perl.git/commit/a190e648879
10
11Don't override possible extra $ccflags values given to Configure
12on GNU/Hurd.
13
14Patch-Name: fixes/hurd-ccflags.diff
15---
16 hints/gnu.sh | 2 +-
17 1 files changed, 1 insertions(+), 1 deletions(-)
18
19diff --git a/hints/gnu.sh b/hints/gnu.sh
20index 2cfce54..c1ba2db 100644
21--- a/hints/gnu.sh
22+++ b/hints/gnu.sh
23@@ -19,7 +19,7 @@ lddlflags='-shared'
24 ccdlflags='-Wl,-E'
25
26 # Debian bug #258618
27-ccflags='-D_GNU_SOURCE'
28+ccflags="-D_GNU_SOURCE $ccflags"
29
30 # The following routines are only available as stubs in GNU libc.
31 # XXX remove this once metaconf detects the GNU libc stubs.