From 3ef5aed853c38aa6d542d770cf1502667e4ee762 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 31 Jan 2017 08:48:43 +0100 Subject: build: properly strip elf executables We had several elf executables that were not stripped properly. Move the filenames to a dedicated variable and use that to not miss anything. --- GNUmakefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'GNUmakefile') diff --git a/GNUmakefile b/GNUmakefile index ec018a0..b78cb31 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -258,8 +258,9 @@ standalone: clean single: standalone cp vis-single.sh vis-single - strip vis - strip vis-menu + for e in $(ELF); do \ + ${STRIP} "$$e"; \ + done tar c $(EXECUTABLES) lua/ | gzip -9 >> vis-single .PHONY: standalone local dependencies-common dependencies-local dependencies-clean -- cgit v1.2.3