Thomas Heijligen has uploaded this change for review. ( https://review.coreboot.org/c/flashrom/+/58246 )
Change subject: Makefile: use STRIP_ARGS = -s on all platforms ......................................................................
Makefile: use STRIP_ARGS = -s on all platforms
Strip-all should be the default behavior of strip, but not all systems support this. Use -s (--strip-all) on all systems to not depend on default behavior.
Change-Id: I2c80d553fb54d94bc65f07e700c90dd1bae4854e Signed-off-by: Thomas Heijligen thomas.heijligen@secunet.de --- M Makefile 1 file changed, 1 insertion(+), 4 deletions(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/46/58246/1
diff --git a/Makefile b/Makefile index 8e06dee..29d1020 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,7 @@ # Note for anyone editing this Makefile: gnumake will happily ignore any # changes in this Makefile to variables set on the command line. STRIP ?= strip +STRIP_ARGS = -s INSTALL = install DIFF = diff PREFIX ?= /usr/local @@ -157,10 +158,6 @@ CC = gcc endif
-ifneq ($(HOST_OS), SunOS) -STRIP_ARGS = -s -endif - # Determine the destination OS. # IMPORTANT: The following line must be placed before TARGET_OS is ever used # (of course), but should come after any lines setting CC because the line