diff options
author | Samuel Thibault <sthibault@debian.org> | 2010-08-04 13:34:05 +0300 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-06-05 13:58:15 -0700 |
commit | a190e6488794f252f37b03bee0105f5b92d67239 (patch) | |
tree | 7f06bfb2faca1b6055a353b2d76e9817b7599df5 /hints | |
parent | a991bd3bfb069b09697e19297c2d3ae6305c766f (diff) | |
download | perl-a190e6488794f252f37b03bee0105f5b92d67239.tar.gz |
Make hints/gnu.sh append to $ccflags rather than overriding them
Bug-Debian: http://bugs.debian.org/587901
Don't override possible extra $ccflags values given to Configure
on GNU/Hurd.
Diffstat (limited to 'hints')
-rw-r--r-- | hints/gnu.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hints/gnu.sh b/hints/gnu.sh index 2cfce54108..c1ba2db670 100644 --- a/hints/gnu.sh +++ b/hints/gnu.sh @@ -19,7 +19,7 @@ lddlflags='-shared' ccdlflags='-Wl,-E' # Debian bug #258618 -ccflags='-D_GNU_SOURCE' +ccflags="-D_GNU_SOURCE $ccflags" # The following routines are only available as stubs in GNU libc. # XXX remove this once metaconf detects the GNU libc stubs. |