Fix armv7 autodetection

armv7l is armv7 architecture and CFG_CPUTYPE should be armv7 in order to end up
with armv7-unknown-linux-gnueabihf.mk rather than
arm-unknown-linux-gnueabihf.mk
This commit is contained in:
Matwey V. Kornilov 2016-10-30 11:26:25 +03:00
parent 69d364bc4f
commit 10ce90fca2

2
configure vendored
View File

@ -508,7 +508,7 @@ case $CFG_CPUTYPE in
;;
armv7l)
CFG_CPUTYPE=arm
CFG_CPUTYPE=armv7
CFG_OSTYPE="${CFG_OSTYPE}eabihf"
;;