diff options
author | Christian Heim <phreak@gentoo.org> | 2007-05-12 11:00:11 +0000 |
---|---|---|
committer | Christian Heim <phreak@gentoo.org> | 2007-05-12 11:00:11 +0000 |
commit | 5baf22e788b057694742d21421c96082ffc46df6 (patch) | |
tree | fc2d1ccd804ada0b8205e977e797b336bf4f30f2 /dev-libs | |
parent | Remove Apache1 support, fix Apache2 support. (diff) | |
download | gentoo-2-5baf22e788b057694742d21421c96082ffc46df6.tar.gz gentoo-2-5baf22e788b057694742d21421c96082ffc46df6.tar.bz2 gentoo-2-5baf22e788b057694742d21421c96082ffc46df6.zip |
Fixing the permissions bug (#178053 - thanks to Tobias Sager <moixa at gmx.ch>), hopefully fixing any further issues.
(Portage version: 2.1.2.7)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/klibc/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/klibc/klibc-1.4.13.ebuild | 9 |
2 files changed, 13 insertions, 2 deletions
diff --git a/dev-libs/klibc/ChangeLog b/dev-libs/klibc/ChangeLog index bccf269006c2..a415606c212f 100644 --- a/dev-libs/klibc/ChangeLog +++ b/dev-libs/klibc/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/klibc # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.39 2007/05/12 02:04:03 dsd Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/ChangeLog,v 1.40 2007/05/12 11:00:11 phreak Exp $ + + 12 May 2007; Christian Heim <phreak@gentoo.org> klibc-1.4.13.ebuild: + Fixing the permissions bug (#178053 - thanks to Tobias Sager <moixa at + gmx.ch>), hopefully fixing any further issues. 12 May 2007; Daniel Drake <dsd@gentoo.org> metadata.xml: Move from kernel to kernel-misc herd diff --git a/dev-libs/klibc/klibc-1.4.13.ebuild b/dev-libs/klibc/klibc-1.4.13.ebuild index 91805a3c2e49..6c4517a6f766 100644 --- a/dev-libs/klibc/klibc-1.4.13.ebuild +++ b/dev-libs/klibc/klibc-1.4.13.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.4.13.ebuild,v 1.4 2007/05/07 19:22:32 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/klibc/klibc-1.4.13.ebuild,v 1.5 2007/05/12 11:00:11 phreak Exp $ inherit eutils linux-info multilib @@ -202,6 +202,13 @@ src_install() { install || die "Install failed!" fi + # Fix the permissions (bug #178053) on /usr/$(get_libdir)/klibc/include/linux + # Actually I have no idea, why the includes have those weird-ass permissions + # or a particular system, might be due to inherited permissions from parent + # directory + + find /usr/$(get_libdir)/klibc/include/linux -type f | xargs chmod 0644 + # Hardlinks becoming copies for x in gunzip zcat ; do rm -f "${D}/${klibc_prefix}/bin/${x}" |