From bd0c5281fda5a67bef29c6126a46edcb75eeb540 Mon Sep 17 00:00:00 2001 From: Dmitry Safonov Date: Thu, 11 Feb 2016 19:48:15 +0300 Subject: [PATCH] makefile: move PROTOUFIX export to arm section As SRCARCH := arm defined two lines above, no need for additional ifeq. Impact: cleanup Signed-off-by: Dmitry Safonov Reviewed-by: Christopher Covington Signed-off-by: Pavel Emelyanov --- Makefile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index dcc9492af..da5552e78 100644 --- a/Makefile +++ b/Makefile @@ -97,16 +97,15 @@ ifeq ($(shell echo $(ARCH) | sed -e 's/arm.*/arm/'),arm) ifeq ($(ARMV),7) USERCFLAGS += -march=armv7-a endif -endif -ifeq ($(ARCH),aarch64) - VDSO := y -endif -ifeq ($(SRCARCH),arm) PROTOUFIX := y export PROTOUFIX endif +ifeq ($(ARCH),aarch64) + VDSO := y +endif + # # The PowerPC 64 bits architecture could be big or little endian. # They are handled in the same way.