From 3218a87a7fd4e41c6ff90fc0adb7cb28009faf23 Mon Sep 17 00:00:00 2001 From: Ruben Ayrapetyan Date: Mon, 13 Apr 2015 20:38:02 +0300 Subject: [PATCH] Replacing 'uname -p' with 'uname -m' in Makefile. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6b617ba56..f246f15d7 100644 --- a/Makefile +++ b/Makefile @@ -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";\