Package: languagechooser Version: 1.39 Severity: normal Tags: patch This patch should enable installation of localization-config for LANG != en_US (so that en_GB, en_AU, en_IE are handled) or by default if arch is "powerpc", so that the X kbd configuration of the subarchs is handled correctly.
-- System Information: Debian Release: 3.1 APT prefers testing APT policy: (500, 'testing') Architecture: powerpc (ppc) Kernel: Linux 2.6.8-pegasos Locale: LANG=el_GR.UTF-8, LC_CTYPE=el_GR.UTF-8
--- languagechooser.orig 2004-10-16 16:28:33.000000000 +0300 +++ languagechooser 2004-10-18 14:22:33.324713304 +0300 @@ -10,6 +10,7 @@ languagecode="debian-installer/language" countrycode="debian-installer/country" consoledisplay="debian-installer/consoledisplay" +ARCH=`udpkg --print-architecture` log() { logger -t languagechooser "info: $@" @@ -67,6 +68,11 @@ # Package iso-codes is missing in Woody. Do not fail if it is # missing to make d-i capable of installing Woody and Skolelinux. apt-install iso-codes || true +fi + +# Install localization-config only if LANG != en_US or +# arch is powerpc. +if [ "$LANG" != "en_US" -o "$ARCH" == "powerpc" ]; then apt-install localization-config || true fi