summaryrefslogtreecommitdiff
path: root/Debian/Debhelper
diff options
context:
space:
mode:
authorRoger Leigh <rleigh@debian.org>2011-06-14 20:43:03 +0100
committerJoey Hess <joey@kitenet.net>2011-06-14 16:10:13 -0400
commit9e4341d34daca3d00a0866a259162f3d55407231 (patch)
tree41c0c442d4f9409d35d0bf5096ab873a3e21be38 /Debian/Debhelper
parent30b95fc565a4ef342cdc4902d2a7ef7428cb3bda (diff)
Don't add package name to libexecdir in v9
Diffstat (limited to 'Debian/Debhelper')
-rw-r--r--Debian/Debhelper/Buildsystem/autoconf.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Debian/Debhelper/Buildsystem/autoconf.pm b/Debian/Debhelper/Buildsystem/autoconf.pm
index c211d8da..1fbc80de 100644
--- a/Debian/Debhelper/Buildsystem/autoconf.pm
+++ b/Debian/Debhelper/Buildsystem/autoconf.pm
@@ -40,7 +40,7 @@ sub configure {
my $multiarch=dpkg_architecture_value("DEB_HOST_MULTIARCH");
if (! compat(8) && defined $multiarch) {
push @opts, "--libdir=\${prefix}/lib/$multiarch";
- push @opts, "--libexecdir=\${prefix}/lib/$multiarch/" . sourcepackage();
+ push @opts, "--libexecdir=\${prefix}/lib/$multiarch";
}
else {
push @opts, "--libexecdir=\${prefix}/lib/" . sourcepackage();