Replacing 'uname -p' with 'uname -m' in Makefile.

This commit is contained in:
Ruben Ayrapetyan 2015-04-13 20:38:02 +03:00
parent 259e871681
commit 3218a87a7f

View File

@ -139,7 +139,7 @@ export SHELL=/bin/bash
all: precommit
$(BUILD_DIRS_NATIVE):
@ arch=`uname -p`; \
@ arch=`uname -m`; \
if [ "$$arch" == "armv7l" ]; \
then \
readelf -A /proc/self/exe | grep Tag_ABI_VFP_args && arch=$$arch"-hf" || arch=$$arch"-el";\