summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_build.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2014-10-11 08:50:26 +0200
committerHolger Levsen <holger@layer-acht.org>2014-10-11 08:50:26 +0200
commit844d2dc39dd77e33ae67684be0a1dfb57ea53121 (patch)
tree961892d1af367ecfaa92f012d32f1405976097ab /bin/reproducible_build.sh
parentc898e12ceaebb421269c135788516f52699aa01a (diff)
downloadjenkins.debian.net-844d2dc39dd77e33ae67684be0a1dfb57ea53121.tar.xz
reproducible: add linux-any as valid arch
Diffstat (limited to 'bin/reproducible_build.sh')
-rwxr-xr-xbin/reproducible_build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh
index ed38a01a..1e8e42b9 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -165,7 +165,7 @@ for SRCPACKAGE in ${PACKAGES} ; do
ARCHITECTURES=$(grep "^Architecture: " ${SRCPACKAGE}_*.dsc| cut -d " " -f2- | sed -s "s# #\n#g" | sort -u)
set +x
for ARCH in ${ARCHITECTURES} ; do
- if [ "$ARCH" = "any" ] || [ "$ARCH" = "all" ] || [ "$ARCH" = "amd64" ] || [ "$ARCH" = "linux-amd64" ] ; then
+ if [ "$ARCH" = "any" ] || [ "$ARCH" = "all" ] || [ "$ARCH" = "amd64" ] || [ "$ARCH" = "linux-any" ] || [ "$ARCH" = "linux-amd64" ] ; then
SUITABLE=true
break
fi