Bash build fix - unary operator expected

This commit is contained in:
twinaphex 2014-03-23 17:14:54 +01:00
parent cafdeca2de
commit 84e0921f8d

View File

@ -17,7 +17,7 @@ case "$ARCH" in
esac;; esac;;
esac esac
if [ $PROCESSOR_ARCHITEW6432 = "AMD64" ]; then if [[ -n "$PROCESSOR_ARCHITEW6432" ]] && $PROCESSOR_ARCHITEW6432="AMD64"; then
ARCH=x86_64 ARCH=x86_64
X86=true && X86_64=true X86=true && X86_64=true
fi fi