From 3f0e0b886780483519ebb93bd8aa10e7b5045e5b Mon Sep 17 00:00:00 2001 From: Andri Yngvason Date: Sat, 7 Sep 2019 17:31:20 +0000 Subject: [PATCH] Allow over-riding of strip exec --- common.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.mk b/common.mk index 73d965f..b0dea4a 100644 --- a/common.mk +++ b/common.mk @@ -13,9 +13,9 @@ endif # end arm block endif # end x86_64 block ifeq (, $(shell which $(MACHINE)-strip 2>/dev/null)) - STRIP := strip + STRIP ?= strip else - STRIP := $(MACHINE)-strip + STRIP ?= $(MACHINE)-strip endif ifeq (, $(shell which $(MACHINE)-pkg-config 2>/dev/null))