summaryrefslogtreecommitdiff
path: root/build/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'build/build.sh')
-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