aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2008-02-16 16:52:32 -0500
committerAndrew G. Morgan <morgan@kernel.org>2008-02-17 08:07:33 -0800
commit023be070237e083282aa87aff279374da6576a97 (patch)
tree19d490f1e3e8255694b4aca97bce5a9f52f5d019
parent76f6f0a4f8622078038596280db9a0fecacf3cb4 (diff)
downloadlibcap-023be070237e083282aa87aff279374da6576a97.tar.gz
do not use the '-s' flag with `install`
The `install` program strips binaries when given the '-s' flag. This step should be left up to package maintainers to handle the stripping, especially since the `install` program will always execute `strip` -- this is no good for cross-compiling for example. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: Andrew G. Morgan <morgan@kernel.org>
-rw-r--r--progs/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/progs/Makefile b/progs/Makefile
index 9d25a78..d711656 100644
--- a/progs/Makefile
+++ b/progs/Makefile
@@ -17,7 +17,7 @@ $(PROGS): %: %.o
install: all
mkdir -p -m 0755 $(SBINDIR)
for p in $(PROGS) ; do \
- install -s -m 0755 $$p $(SBINDIR) ; \
+ install -m 0755 $$p $(SBINDIR) ; \
done
clean: