summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorPhilipp Kern <pkern@debian.org>2012-11-30 21:43:38 +0000
committerPhilipp Kern <pkern@debian.org>2012-11-30 21:43:38 +0000
commit30aa6208fa4963b3b08307e740aa8daec1ce51eb (patch)
treefb51a56c82158e88ed2ed32ef393d608904193d8 /build
parent1a006d7cc82e31074c686c8827cb8824c630e31c (diff)
downloadinstallation-guide-30aa6208fa4963b3b08307e740aa8daec1ce51eb.zip
get arch and lang list from definition file, like for www.d.o builds
Diffstat (limited to 'build')
-rwxr-xr-xbuild/build.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/build.sh b/build/build.sh
index b621c705a..153f2abef 100755
--- a/build/build.sh
+++ b/build/build.sh
@@ -9,13 +9,13 @@ manual_release=${manual_release:=wheezy}
if [ -z "$languages" ]; then
# Buildlist of languages
- # Note: this list is no longer being maintained; see debian/langlist instead
- languages="en de fr ja pt"
+ # Based on list of languages used in official builds
+ languages="$(cd ../debian; ./getfromlist langlist | tr $'\n' ' ')"
fi
if [ -z "$architectures" ]; then
# Note: this list is no longer being maintained; see debian/archlist instead
- architectures="amd64 armel hppa i386 ia64 mips mipsel powerpc s390 sparc"
+ architectures="$(cd ../debian; ./getfromlist archlist | tr $'\n' ' ')"
fi
if [ -z "$destination" ]; then