From: Joey Hess Date: Tue, 2 Feb 2010 17:12:03 +0000 (-0500) Subject: Fix handling of -O with options specified by commands. Closes: #568081 X-Git-Tag: 7.4.13~1 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=15be6e57dee48ce8925c987db72985ab7097837b;p=debhelper.git Fix handling of -O with options specified by commands. Closes: #568081 --- diff --git a/Debian/Debhelper/Dh_Getopt.pm b/Debian/Debhelper/Dh_Getopt.pm index 214fa2d..f536487 100644 --- a/Debian/Debhelper/Dh_Getopt.pm +++ b/Debian/Debhelper/Dh_Getopt.pm @@ -157,7 +157,9 @@ sub getoptions { foreach my $opt (@test) { # Try to parse an option, and skip it # if it is not known. - if (getoptions([$opt], test => 1)) { + if (getoptions([$opt], %params, + ignore_unknown_options => 0, + test => 1)) { getoptions([$opt], %params); } } diff --git a/debian/changelog b/debian/changelog index 1a879f5..514301e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ debhelper (7.4.13) UNRELEASED; urgency=low * dh_compress: Avoid compressing images in /usr/share/info. Closes: #567586 + * Fix handling of -O with options specified by commands. Closes: #568081 -- Joey Hess Sun, 31 Jan 2010 14:34:30 -0500