diff options
-rw-r--r-- | eclass/kernel-2.eclass | 4 | ||||
-rw-r--r-- | eclass/toolchain.eclass | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index a680087480c0..dba391d1ce49 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.216 2008/11/13 23:50:55 mpagano Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.217 2009/01/28 21:01:10 vapier Exp $ # Description: kernel.eclass rewrite for a clean base regarding the 2.6 # series of kernel with back-compatibility for 2.4 @@ -492,7 +492,7 @@ compile_headers_tweak_config() { install_universal() { #fix silly permissions in tarball cd ${WORKDIR} - chown -R root:0 * + chown -R root:0 * >& /dev/null chmod -R a+r-w+X,u+w * cd ${OLDPWD} } diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index fec62bba5850..9ab0308513bb 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.385 2009/01/28 21:00:27 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.386 2009/01/28 21:01:10 vapier Exp $ # # Maintainer: Toolchain Ninjas <toolchain@gentoo.org> @@ -2455,7 +2455,7 @@ fix_libtool_libdir_paths() { dirpath=${archive%/*} dirpath=${dirpath#${D}} sed -i \ - -e "/^libdir=/s:=.*:'${dirpath}':" \ + -e "/^libdir=/s:=.*:='${dirpath}':" \ -e "/^dependency_libs=/s:/[^ ]*/${allarchives}:${dirpath}/\1:g" \ "${archive}" done |