From 1ed544bd195b02ca59bab8e325e19e1e0567aa7c Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 2 Nov 2016 11:49:07 +0100 Subject: tools: everybody hates automatic stripping I happen to like it, but package managers don't. The GNU standard [1] says there should be a separate install-strip target. I don't like duplicating code like that. So, instead, I'll just remove stripping all together. [1] https://www.gnu.org/prep/standards/html_node/Standard-Targets.html --- src/tools/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tools/Makefile') diff --git a/src/tools/Makefile b/src/tools/Makefile index fc0c0f3..0d3a2e4 100644 --- a/src/tools/Makefile +++ b/src/tools/Makefile @@ -24,7 +24,7 @@ clean: rm -f wg *.o *.d install: wg - install -v -d "$(DESTDIR)$(BINDIR)" && install -s -m 0755 -v wg "$(DESTDIR)$(BINDIR)/wg" + install -v -d "$(DESTDIR)$(BINDIR)" && install -m 0755 -v wg "$(DESTDIR)$(BINDIR)/wg" install -v -d "$(DESTDIR)$(MANDIR)/man8" && install -m 0644 -v wg.8 "$(DESTDIR)$(MANDIR)/man8/wg.8" check: clean -- cgit v1.2.3-59-g8ed1b