aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/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
commit971c792ba9d0b36fcb05726ab4bdd48fa2f906d3 (patch)
tree856cb4d30cadc9072f23100c422d5a2e1afb73d0 /src/Makefile
parentgit: organize ignore files (diff)
downloadwireguard-tools-971c792ba9d0b36fcb05726ab4bdd48fa2f906d3.tar.xz
wireguard-tools-971c792ba9d0b36fcb05726ab4bdd48fa2f906d3.zip
wg: 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 Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to '')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index fc0c0f3..0d3a2e4 100644
--- a/src/Makefile
+++ b/src/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