Package: debhelper Version: 7.0.17 Severity: minor Tags: patch
If dh is called with an incorrect sequence name, it responds as follows: "dh: Unknown sequence configure (chose from: binary binary-arch binary-indep build clean install)" There should be two 'o's in the word 'choose'. Patch attached. -- System Information: Debian Release: 5.0 APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing') Architecture: amd64 (x86_64) Kernel: Linux 2.6.26-1-amd64 (SMP w/1 CPU core) Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/bash Versions of packages debhelper depends on: ii binutils 2.18.1~cvs20080103-7 The GNU assembler, linker and bina ii dpkg-dev 1.14.23 Debian package development tools ii file 4.26-2 Determines file type using "magic" ii html2text 1.3.2a-5 advanced HTML to text converter ii man-db 2.5.2-3 on-line manual pager ii perl 5.10.0-18 Larry Wall's Practical Extraction ii po-debconf 1.0.15 manage translated Debconf template debhelper recommends no packages. Versions of packages debhelper suggests: ii dh-make 0.47 tool that converts source archives -- no debconf information
--- dh 2008-12-25 19:10:04.000000000 +0000 +++ dh.orig 2008-12-25 19:09:52.000000000 +0000 @@ -345,7 +345,7 @@ } my $sequence=shift; if (! exists $sequences{$sequence}) { - error "Unknown sequence $sequence (choose from: ". + error "Unknown sequence $sequence (chose from: ". join(" ", sort keys %sequences).")"; } my @sequen...@{$sequences{$sequence}};