Package: module-assistant Version: 0.10.8 Severity: normal Tags: patch When executing m-a -i prepare I'm getting this output:
$ m-a -i prepare NOTE: You are not root but member of the src group. Mapping the base working directory to "/usr/src/modass". Getting source for kernel version: 2.6.22-4-k7 Kernel headers available in /lib/modules/2.6.22-4-k7/build /usr/bin/sudo apt-get-y install build-essential sudo: apt-get-y: command not found Done! This is due to a typo in the source. A dot is present where a comma should be. (Verified to be present also in version 0.10.11.0) Patch attached. -- Pedro Gimeno -- System Information: Debian Release: 4.0 APT prefers stable APT policy: (500, 'stable') Architecture: i386 (i686) Shell: /bin/sh linked to /bin/dash Kernel: Linux 2.6.22-4-k7 Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=en_US.ISO-8859-15 (charmap=ISO-8859-15) Versions of packages module-assistant depends on: ii libtext-wrapi18n-perl 0.06-5 internationalized substitute of Te ii perl 5.8.8-7etch1 Larry Wall's Practical Extraction Versions of packages module-assistant recommends: ii liblocale-gettext-perl 1.05-1 Using libc functions for internati -- no debconf information
--- module-assistant 2006-11-15 16:47:23.000000000 +0100 +++ module-assistant.new 2008-05-24 07:12:10.000000000 +0200 @@ -596,7 +596,7 @@ } # if(`apt-cache policy build-essential` =~ /Installed:..none/) { print STDERR gettext("Installing packages needed for the build environment...") . "\n" if (!opt_quiet); - withecho($sudo, "apt-get". ($opt_noninter?"-y":undef), "install", "build-essential"); + withecho($sudo, "apt-get", ($opt_noninter?"-y":undef), "install", "build-essential"); # } print STDERR "\n". gettext("Done!") . "\n"; %ENV=%envbackup;