diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-07-15 05:27:30 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-07-15 05:27:30 +0000 |
commit | 8fd066128725bfa041e69cdb1c70d23a8da9e851 (patch) | |
tree | c944c9c46e1461e1b19eab7752cc9df60614c373 /sys-libs/libcap/files | |
parent | version bump (diff) | |
download | historical-8fd066128725bfa041e69cdb1c70d23a8da9e851.tar.gz historical-8fd066128725bfa041e69cdb1c70d23a8da9e851.tar.bz2 historical-8fd066128725bfa041e69cdb1c70d23a8da9e851.zip |
Cleanup ebuild a bit and fix stripping via patch rather than sed.
Package-Manager: portage-2.1.1_pre2-r8
Diffstat (limited to 'sys-libs/libcap/files')
-rw-r--r-- | sys-libs/libcap/files/libcap-1.10-nostrip.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sys-libs/libcap/files/libcap-1.10-nostrip.patch b/sys-libs/libcap/files/libcap-1.10-nostrip.patch new file mode 100644 index 000000000000..9908b75520c3 --- /dev/null +++ b/sys-libs/libcap/files/libcap-1.10-nostrip.patch @@ -0,0 +1,15 @@ +let portage do the stripping + +http://bugs.gentoo.org/133580 + +--- libcap-1.10/progs/Makefile ++++ libcap-1.10/progs/Makefile +@@ -44,7 +44,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: |