This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch master in repository dpkg.
commit a609805efa566bbe02485566e65bbac2dbf666f4 Author: Guillem Jover <[email protected]> Date: Mon Feb 16 23:54:27 2015 +0100 Dpkg::Changelog::Parse: Say execute instead of exec in error message --- debian/changelog | 2 ++ scripts/Dpkg/Changelog/Parse.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index e49834e..3502268 100644 --- a/debian/changelog +++ b/debian/changelog @@ -81,6 +81,8 @@ dpkg (1.18.0) UNRELEASED; urgency=low * Only use stackprotectorstrong when building dpkg with gcc >= 4.9. * Do not fail on dpkg-query -W and -l when multiple arguments match the same package. Closes: #588505 + * Output strings fixes and improvements: + - Say “execute” instead of “exec” in Dpkg::Changelog::Parse error message. [ Raphaël Hertzog ] * Drop myself from Uploaders. diff --git a/scripts/Dpkg/Changelog/Parse.pm b/scripts/Dpkg/Changelog/Parse.pm index f79bb6e..cbd40d6 100644 --- a/scripts/Dpkg/Changelog/Parse.pm +++ b/scripts/Dpkg/Changelog/Parse.pm @@ -143,7 +143,7 @@ sub changelog_parse { my $pid = open(my $parser_fh, '-|'); syserr(g_('cannot fork for %s'), $parser) unless defined $pid; if (not $pid) { - exec(@exec) or syserr(g_('cannot exec format parser: %s'), $parser); + exec @exec or syserr(g_('cannot execute format parser: %s'), $parser); } # Get the output into several Dpkg::Control objects -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/dpkg/dpkg.git -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected]

