Fix x86_64 detection in Git Bash on Windows, along with this error:

libretro-config.sh: line 20: AMD64=AMD64: command not found
This commit is contained in:
TroggleMonkey 2014-05-16 13:54:50 -04:00
parent ff2d9d81a8
commit 4540e8d6a6
1 changed files with 1 additions and 1 deletions

View File

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