selftest/x86: build both bitnesses
[deliverable/linux.git] / tools / testing / selftests / x86 / Makefile
index ddf63569df5ae166e466901aa1a60e1b194fe508..be93945bffab8013fee9e71a5cc0f021146ddb74 100644 (file)
@@ -7,13 +7,13 @@ BINARIES_64 := $(TARGETS_C_BOTHBITS:%=%_64)
 
 CFLAGS := -O2 -g -std=gnu99 -pthread -Wall
 
-UNAME_P := $(shell uname -p)
+UNAME_M := $(shell uname -m)
 
 # Always build 32-bit tests
 all: all_32
 
 # If we're on a 64-bit host, build 64-bit tests as well
-ifeq ($(shell uname -p),x86_64)
+ifeq ($(UNAME_M),x86_64)
 all: all_64
 endif
 
This page took 0.043991 seconds and 5 git commands to generate.