summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorMichael Vogt <mvo@debian.org>2010-10-13 13:38:13 +0200
committerMichael Vogt <mvo@debian.org>2010-10-13 13:38:13 +0200
commit0497fc4c09c434ea34aa4dbfe773451d9a7082d6 (patch)
tree334b8273078636f0341d3dd24f1ab3b39a1ead4a /debian
parent3a97e9665d126a582c830376bfded145c0f9b2d1 (diff)
parent4b2a4ab8abb9f9b6ce262882480eee945a041d14 (diff)
* debian/apt.cron.daily:
- source /etc/default/locale (if available) so that the apt-get update cron job fetches the right translated package descriptions * fix test failure on amd64
Diffstat (limited to 'debian')
-rw-r--r--debian/apt.cron.daily7
-rw-r--r--debian/changelog7
2 files changed, 14 insertions, 0 deletions
diff --git a/debian/apt.cron.daily b/debian/apt.cron.daily
index 8ace14a31..c61bfb9bb 100644
--- a/debian/apt.cron.daily
+++ b/debian/apt.cron.daily
@@ -417,6 +417,13 @@ do_cache_backup $BackupArchiveInterval
# mirrors at the same time
random_sleep
+# include default system language so that "apt-get update" will
+# fetch the right translated package descriptions
+if [ -r /etc/default/locale ]; then
+ . /etc/default/locale
+ export LANG LANGUAGE LC_MESSAGES LC_ALL
+fi
+
# update package lists
UPDATED=0
UPDATE_STAMP=/var/lib/apt/periodic/update-stamp
diff --git a/debian/changelog b/debian/changelog
index e7d784eb8..50e18d3cf 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -5,6 +5,13 @@ apt (0.8.7) UNRELEASED; urgency=low
* Another typo fixed in French ("Anfin"). Thanks to bubulle
* Wrong translation for "showauto" fixed. Thanks to Raphaƫl Hertzog
Closes: #599265
+
+ [ Michael Vogt ]
+ * debian/apt.cron.daily:
+ - source /etc/default/locale (if available) so that the
+ apt-get update cron job fetches the right translated package
+ descriptions
+ * fix test failure on amd64
-- Christian Perrier <bubulle@debian.org> Tue, 05 Oct 2010 05:35:58 +0200