]> git.ipfire.org Git - thirdparty/fcron.git/commitdiff
use strip command from configure (thanks Luca Tavanti)
authorThibault Godouet <yo8192@users.noreply.github.com>
Sat, 11 Feb 2017 10:20:17 +0000 (10:20 +0000)
committerThibault Godouet <yo8192@users.noreply.github.com>
Sat, 11 Feb 2017 10:20:17 +0000 (10:20 +0000)
Makefile.in

index d264f6c596b917ba9c5c1182b10428fcc53497e9..f83dbbc8a1e810c8a6dd8eda8ebb2da82cbc837a 100644 (file)
@@ -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