Don't strip binaries

Let the package manager do it. You don't want to
force stripping, the symbols are useful for debugging.

Signed-off-by: Mattias Andrée <maandree@kth.se>
This commit is contained in:
Mattias Andrée 2016-07-04 19:02:22 +02:00
parent 1099dad9d0
commit f9208f9af8

View File

@ -18,7 +18,7 @@ target/release/exa:
install: target/release/exa
# BSD and OSX don't have -D to create leading directories
install -dm755 -- "$(DESTDIR)$(PREFIX)/bin/" "$(DESTDIR)$(PREFIX)/share/man/man1/"
install -sm755 -- target/release/exa "$(DESTDIR)$(PREFIX)/bin/"
install -m755 -- target/release/exa "$(DESTDIR)$(PREFIX)/bin/"
install -m644 -- contrib/man/exa.1 "$(DESTDIR)$(PREFIX)/share/man/man1/"
uninstall: