Merge pull request #56 from TroggleMonkey/master

Fix x86_64 detection in Git Bash on Windows, along with this error:
This commit is contained in:
Hans-Kristian Arntzen 2014-05-17 01:13:32 +02:00
commit ca4d39b566

View File

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