aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/tools/Makefile
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2016-11-02 11:49:07 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2016-11-02 11:49:07 +0100
commit1ed544bd195b02ca59bab8e325e19e1e0567aa7c (patch)
treeef0921e8ec7a7414fb293860f52c7c54c4118877 /src/tools/Makefile
parentkref: elide checks (diff)
downloadwireguard-monolithic-historical-1ed544bd195b02ca59bab8e325e19e1e0567aa7c.tar.xz
wireguard-monolithic-historical-1ed544bd195b02ca59bab8e325e19e1e0567aa7c.zip
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
Diffstat (limited to 'src/tools/Makefile')
-rw-r--r--src/tools/Makefile2
1 files changed, 1 insertions, 1 deletions
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