Commit fd78922a authored by Mike Frysinger's avatar Mike Frysinger

Makefile: do not strip while installing

The -s flag to install breaks things when you cross-compile because
it only understands the native `strip`.  Just drop the flag and let
distros manage things themselves.
Signed-off-by: default avatarMike Frysinger <vapier@gentoo.org>
parent 86d18688
......@@ -54,7 +54,7 @@ test: $(BINARY)
install: $(BINARY) $(MANS)
mkdir -p $(DESTDIR)$(BINDIR)
install -s -m 0755 $(BINARY) $(DESTDIR)$(BINDIR)
install -m 0755 $(BINARY) $(DESTDIR)$(BINDIR)
mkdir -p $(DESTDIR)$(MAN1DIR)
install -m 644 $(MANS) $(DESTDIR)$(MAN1DIR)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment