diff options
author | Daniel Baumann <daniel@debian.org> | 2009-11-30 13:47:54 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2009-11-30 13:47:54 +0100 |
commit | e393e7d27b4116a5947507884704c91f69a157d9 (patch) | |
tree | cb9115e0d4f55ad43a47f59be52092c76493de84 /helpers | |
parent | 23cc476ed79c3a99e9a1de4939eabcaecbd5193c (diff) | |
download | vyos-live-build-e393e7d27b4116a5947507884704c91f69a157d9.tar.gz vyos-live-build-e393e7d27b4116a5947507884704c91f69a157d9.zip |
Updating icedove-l10n packagename handling for post-lenny, thanks to intrigeri <intrigeri@boum.org>.
Diffstat (limited to 'helpers')
-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) |