index : builder | |
Archlinux32 build system | gitolite user |
summaryrefslogtreecommitdiff |
-rwxr-xr-x | bin/local-build-package | 2 |
diff --git a/bin/local-build-package b/bin/local-build-package index ade87c0..89b6f77 100755 --- a/bin/local-build-package +++ b/bin/local-build-package @@ -115,7 +115,7 @@ if [ $# -ne 2 ]; then usage fi -if [ $arch != "i486" ] && [ $arch != "i686" ] && [ $arch != "pentium4" ]; then +if [ "$arch" != "i486" ] && [ "$arch" != "i686" ] && [ "$arch" != "pentium4" ]; then >&2 echo "Illegal architecture '$arch', epxecting one of 'i486', 'i686' or 'pentium4'." usage fi |