From: Joey Hess Date: Wed, 8 Feb 2012 17:47:04 +0000 (-0400) Subject: dh_auto_install: Set AM_UPDATE_INFO_DIR=no to avoid automake generating an info dir... X-Git-Url: https://git.donarmstrong.com/?p=debhelper.git;a=commitdiff_plain;h=4390c7584f2fd14e53b5ea54a5fcabd826fc9f47 dh_auto_install: Set AM_UPDATE_INFO_DIR=no to avoid automake generating an info dir file. Closes: #634741 --- diff --git a/Debian/Debhelper/Buildsystem/makefile.pm b/Debian/Debhelper/Buildsystem/makefile.pm index f38387b..1eb4b5b 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 { diff --git a/debian/changelog b/debian/changelog index 60c84c2..65643df 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +debhelper (9.20120116) UNRELEASED; urgency=low + + * dh_auto_install: Set AM_UPDATE_INFO_DIR=no to avoid automake + generating an info dir file. Closes: #634741 + + -- Joey Hess Wed, 08 Feb 2012 13:46:13 -0400 + debhelper (9.20120115) unstable; urgency=low * Finalized v9 mode, which is the new recommended default.