diff options
author | Samuel Thibault <sthibault@debian.org> | 2010-08-04 13:34:05 +0300 |
---|---|---|
committer | Ricardo Signes <rjbs@cpan.org> | 2012-08-09 16:04:10 -0400 |
commit | e52571affc1637f96ec9a539d5fdaba3b6fa35f5 (patch) | |
tree | 1841fe20393bdc531f0858e19d2aa1cc5d4814bf /hints | |
parent | ef517865dd6f542d2f867602823ec70ce209b498 (diff) | |
download | perl-e52571affc1637f96ec9a539d5fdaba3b6fa35f5.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. |