summaryrefslogtreecommitdiff
path: root/Debian/Debhelper/Buildsystem/makefile.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2012-02-08 13:47:04 -0400
committerJoey Hess <joey@kitenet.net>2012-02-08 13:47:04 -0400
commit4390c7584f2fd14e53b5ea54a5fcabd826fc9f47 (patch)
tree1f521b62cbd1fc6c4b627bcbf838c27d85171f9f /Debian/Debhelper/Buildsystem/makefile.pm
parent5006fe3e430184babe721aa87cb41749f8be9648 (diff)
dh_auto_install: Set AM_UPDATE_INFO_DIR=no to avoid automake generating an info dir file. Closes: #634741
Diffstat (limited to 'Debian/Debhelper/Buildsystem/makefile.pm')
-rw-r--r--Debian/Debhelper/Buildsystem/makefile.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/Debian/Debhelper/Buildsystem/makefile.pm b/Debian/Debhelper/Buildsystem/makefile.pm
index f38387bd..1eb4b5b5 100644
--- a/Debian/Debhelper/Buildsystem/makefile.pm
+++ b/Debian/Debhelper/Buildsystem/makefile.pm
@@ -101,7 +101,9 @@ sub test {
sub install {
my $this=shift;
my $destdir=shift;
- $this->make_first_existing_target(['install'], "DESTDIR=$destdir", @_);
+ $this->make_first_existing_target(['install'],
+ "DESTDIR=$destdir",
+ "AM_UPDATE_INFO_DIR=no", @_);
}
sub clean {