Backport: disable apt translations

This commit is contained in:
Steve McIntyre 2013-06-17 15:58:17 +01:00
parent 589a422934
commit 0029d43179
2 changed files with 5 additions and 1 deletions

3
debian/changelog vendored
View File

@ -61,6 +61,9 @@ debian-cd (3.1.6) UNRELEASED-backport; urgency=low
* Make grab_md5 more robust * Make grab_md5 more robust
* Remove -e bashisms from Makefile * Remove -e bashisms from Makefile
* Merge version-tracking sort_deps code from current trunk (r2448) * Merge version-tracking sort_deps code from current trunk (r2448)
* Make sure that when we call apt, we tell it to *not* use localised
package descriptions; this causes issues during build. See #712435 in
apt.
-- Raphaël Hertzog <hertzog@debian.org> Fri, 04 Feb 2011 09:59:21 +0100 -- Raphaël Hertzog <hertzog@debian.org> Fri, 04 Feb 2011 09:59:21 +0100

View File

@ -33,7 +33,8 @@ options=" -q -o Dir::State::status=$APTTMP/$CODENAME-$ARCH/status \
-o Dir::Etc=$APTTMP/$CODENAME-$ARCH/apt/ \ -o Dir::Etc=$APTTMP/$CODENAME-$ARCH/apt/ \
-o APT::Cache::AllVersions=0 \ -o APT::Cache::AllVersions=0 \
-o APT::Cache::ShowVersion=1 \ -o APT::Cache::ShowVersion=1 \
-o APT::Architecture=$ARCH " -o APT::Architecture=$ARCH \
-o Acquire::Languages=none"
sections=main sections=main
if [ "${NONFREE:-0}" != "0" ] || [ "${EXTRANONFREE:-0}" != "0" ] || [ "${FORCE_FIRMWARE:-0}" != "0" ]; then if [ "${NONFREE:-0}" != "0" ] || [ "${EXTRANONFREE:-0}" != "0" ] || [ "${FORCE_FIRMWARE:-0}" != "0" ]; then