diff options
author | Daniel Baumann <daniel@debian.org> | 2009-11-30 13:47:54 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:02 +0100 |
commit | ac52cf9e0f617b6e5e69cc3510f1fcf8c5479bb7 (patch) | |
tree | cb9115e0d4f55ad43a47f59be52092c76493de84 | |
parent | 6a8e1b63754cb66bb4f86092517573f06e9b7e04 (diff) | |
download | vyos-live-build-ac52cf9e0f617b6e5e69cc3510f1fcf8c5479bb7.tar.gz vyos-live-build-ac52cf9e0f617b6e5e69cc3510f1fcf8c5479bb7.zip |
Updating icedove-l10n packagename handling for post-lenny, thanks to intrigeri <intrigeri@boum.org>.
-rwxr-xr-x | helpers/lh_chroot_localization | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/helpers/lh_chroot_localization b/helpers/lh_chroot_localization index 12104e78f..a277f1731 100755 --- a/helpers/lh_chroot_localization +++ b/helpers/lh_chroot_localization @@ -608,7 +608,16 @@ then ;; icedove) - Check_installed chroot/usr/bin/icedove icedove; [ $INSTALL_STATUS -eq 0 ] && Check_package "" icedove-locale-"${ICEDOVE}" + Check_installed chroot/usr/bin/icedove icedove + if [ $INSTALL_STATUS -eq 0 ] + then + if [ "${LH_DISTRIBUTION}" = lenny ] + then + Check_package "" icedove-locale-"${ICEDOVE}" + else + Check_package "" icedove-l10n-"${ICEDOVE}" + fi + fi ;; iceweasel) |