diff options
author | Simon Stelling <blubb@gentoo.org> | 2007-02-21 09:27:20 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2007-02-21 09:27:20 +0000 |
commit | 137716cc0dfb18dea3df674fb060412f6807e11d (patch) | |
tree | 171de196c865be988a10d25cc11a383e7f84dbc1 /eclass | |
parent | stable x86; bug 167846 (diff) | |
download | gentoo-2-137716cc0dfb18dea3df674fb060412f6807e11d.tar.gz gentoo-2-137716cc0dfb18dea3df674fb060412f6807e11d.tar.bz2 gentoo-2-137716cc0dfb18dea3df674fb060412f6807e11d.zip |
-print0 has to go last, otherwise the -type d isn't used
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/emul-libs.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/emul-libs.eclass b/eclass/emul-libs.eclass index ba7e38688418..63cfc8979fad 100644 --- a/eclass/emul-libs.eclass +++ b/eclass/emul-libs.eclass @@ -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/eclass/emul-libs.eclass,v 1.3 2007/02/21 09:19:30 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/emul-libs.eclass,v 1.4 2007/02/21 09:27:20 blubb Exp $ # # Original Author: Simon Stelling <blubb@gentoo.org> @@ -39,7 +39,7 @@ emul-libs_src_install() { done # remove void directories - find "${S}" -depth -print0 -type d | xargs -0 rmdir 2&>/dev/null + find "${S}" -depth -type d -print0 | xargs -0 rmdir 2&>/dev/null cp -pPR "${S}"/* "${D}"/ || die "copying files failed!" } |