mirror of
https://github.com/libretro/libretro-super
synced 2024-11-28 20:14:22 +00:00
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:
commit
ca4d39b566
@ -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
Block a user