summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_build.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2014-10-12 11:23:36 +0200
committerHolger Levsen <holger@layer-acht.org>2014-10-12 11:23:36 +0200
commitf24921eec43d2912c64ea2ad57e36c566520cec5 (patch)
treee475e54019a9a8110acc4cff1d8630d4bc6d0d5b /bin/reproducible_build.sh
parent363d3843ebf4da81c4aca40d8c2f47412c27cf83 (diff)
downloadjenkins.debian.net-f24921eec43d2912c64ea2ad57e36c566520cec5.tar.xz
reproducible: add linux-amd64 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 6e9aa19c..bee908b2 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -187,7 +187,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-any" ] || [ "$ARCH" = "linux-amd64" ] ; then
+ if [ "$ARCH" = "any" ] || [ "$ARCH" = "all" ] || [ "$ARCH" = "amd64" ] || [ "$ARCH" = "linux-any" ] || [ "$ARCH" = "linux-amd64" ] || [ "$ARCH" = "any-amd64" ] ; then
SUITABLE=true
break
fi