summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem/perl_makemaker.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2012-03-13 14:27:04 -0400
committerJoey Hess <joey@kitenet.net>2012-03-13 14:27:04 -0400
commit770ae5500e6e459b32c92a2d00f099249725323e (patch)
tree984a83cd06efca69f23fa5ef721a16ae4139f84b /Debian/Debhelper/Buildsystem/perl_makemaker.pm
parentd895fd3c91309e31a52a30f04b3a04da2fc7e3a4 (diff)
Also include CFLAGS in ld line for perl. Closes: #662666
Diffstat (limited to 'Debian/Debhelper/Buildsystem/perl_makemaker.pm')
-rw-r--r--Debian/Debhelper/Buildsystem/perl_makemaker.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Debian/Debhelper/Buildsystem/perl_makemaker.pm b/Debian/Debhelper/Buildsystem/perl_makemaker.pm
index 342e0eb8..60cda3d0 100644
--- a/Debian/Debhelper/Buildsystem/perl_makemaker.pm
+++ b/Debian/Debhelper/Buildsystem/perl_makemaker.pm
@@ -51,7 +51,7 @@ sub configure {
push @flags, "OPTIMIZE=$ENV{CFLAGS} $ENV{CPPFLAGS}";
}
if ($ENV{LDFLAGS} && ! compat(8)) {
- push @flags, "LD=$Config{ld} $ENV{LDFLAGS}";
+ push @flags, "LD=$Config{ld} $ENV{CFLAGS} $ENV{LDFLAGS}";
}
$this->doit_in_sourcedir("perl", "Makefile.PL", "INSTALLDIRS=vendor",