From: Thibault Godouet Date: Sat, 11 Feb 2017 10:20:17 +0000 (+0000) Subject: use strip command from configure (thanks Luca Tavanti) X-Git-Tag: ver3_3_1~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7b99332d220b74d126c69a476de65953f45ac37a;p=thirdparty%2Ffcron.git use strip command from configure (thanks Luca Tavanti) --- diff --git a/Makefile.in b/Makefile.in index d264f6c..f83dbbc 100644 --- a/Makefile.in +++ b/Makefile.in @@ -235,11 +235,11 @@ endif # strip executables strip: install-staged ifneq ($(DEBUG), 1) - strip $(DESTDIR)$(DESTSBIN)/fcron - strip $(DESTDIR)$(DESTBIN)/fcrontab - strip $(DESTDIR)$(DESTBIN)/fcronsighup + $(STRIP) $(DESTDIR)$(DESTSBIN)/fcron + $(STRIP) $(DESTDIR)$(DESTBIN)/fcrontab + $(STRIP) $(DESTDIR)$(DESTBIN)/fcronsighup ifeq ($(FCRONDYN), 1) - strip $(DESTDIR)$(DESTBIN)/fcrondyn + $(STRIP) $(DESTDIR)$(DESTBIN)/fcrondyn endif endif