This is an automated email from the git hooks/post-receive script. jamessan pushed a commit to branch master in repository devscripts.
commit 3f22b48199449d46758dbedc94d69e3f3eaeb424 Author: James McCoy <[email protected]> Date: Thu Nov 26 01:33:59 2015 -0500 debuild: Use _all as the .changes arch for -A builds Closes: #806262 Signed-off-by: James McCoy <[email protected]> --- debian/changelog | 4 ++++ scripts/debuild.pl | 2 ++ 2 files changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index d02cabe..8511743 100644 --- a/debian/changelog +++ b/debian/changelog @@ -78,6 +78,10 @@ devscripts (2.15.10) UNRELEASED; urgency=medium * debian/control + Add gnupg2/gpgv2 as alternative option to gnupg/gpgv. (Closes: #788414) + [ James McCoy ] + * debuild: + + Use _all as the .changes arch for -A builds. (Closes: #806262) + -- Osamu Aoki <[email protected]> Wed, 07 Oct 2015 21:46:20 +0900 devscripts (2.15.9) unstable; urgency=medium diff --git a/scripts/debuild.pl b/scripts/debuild.pl index 4227d2d..7b1b9c0 100755 --- a/scripts/debuild.pl +++ b/scripts/debuild.pl @@ -981,6 +981,8 @@ if ($command_version eq 'dpkg') { my ($arch, $dsc, $changes, $build); if ($sourceonly) { $arch = 'source'; + } elsif ($binarytarget eq 'binary-indep') { + $arch = 'all'; } else { $arch = $ENV{DEB_HOST_ARCH}; } -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/devscripts.git _______________________________________________ devscripts-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/devscripts-devel
