From 84e0921f8d7c25db656aed4f5327db8a2f8227a0 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 23 Mar 2014 17:14:54 +0100 Subject: [PATCH] Bash build fix - unary operator expected --- libretro-config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro-config.sh b/libretro-config.sh index 4c6c166f..dffc37f4 100755 --- a/libretro-config.sh +++ b/libretro-config.sh @@ -17,7 +17,7 @@ case "$ARCH" in esac;; esac -if [ $PROCESSOR_ARCHITEW6432 = "AMD64" ]; then +if [[ -n "$PROCESSOR_ARCHITEW6432" ]] && $PROCESSOR_ARCHITEW6432="AMD64"; then ARCH=x86_64 X86=true && X86_64=true fi