summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-09-13 16:23:28 +0200
committerHolger Levsen <holger@layer-acht.org>2015-09-13 16:23:28 +0200
commitdfc21ffbc4923d5f629a5e185a90503a01402446 (patch)
treed954543a6a13b8f893ed326719d9545c96832977
parent1bb98063216f4dfc30dfef9b7ee0f813d551752b (diff)
downloadjenkins.debian.net-dfc21ffbc4923d5f629a5e185a90503a01402446.tar.xz
reproducible: fixup typo, preventing any-$ARCH packages to be build
-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 46ae8a7c..d89b8f29 100755
--- a/bin/reproducible_build.sh
+++ b/bin/reproducible_build.sh
@@ -450,7 +450,7 @@ check_suitability() {
local SUITABLE=false
local ARCHITECTURES=$(grep "^Architecture: " ${SRCPACKAGE}_*.dsc| cut -d " " -f2- | sed -s "s# #\n#g" | sort -u)
for arch in ${ARCHITECTURES} ; do
- if [ "$arch" = "any" ] || [ "$arch" = "$ARCH" ] || [ "$arch" = "linux-any" ] || [ "$arch" = "linux-$ARCH" ] || [ "$arch" = "any-ARCH" ] || [ "$arch" = "all" ] ; then
+ if [ "$arch" = "any" ] || [ "$arch" = "$ARCH" ] || [ "$arch" = "linux-any" ] || [ "$arch" = "linux-$ARCH" ] || [ "$arch" = "any-$ARCH" ] || [ "$arch" = "all" ] ; then
SUITABLE=true
break
fi