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:
parent
ff2d9d81a8
commit
4540e8d6a6
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue