diff options
author | Simon Stelling <blubb@gentoo.org> | 2007-02-21 09:14:13 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2007-02-21 09:14:13 +0000 |
commit | 054777363513569fc3cb087522c554aeaa0cc976 (patch) | |
tree | 8e5fc15863e2f4b113d00be9eee254fd7a1e44a6 /eclass | |
parent | new emul-libs eclass (diff) | |
download | historical-054777363513569fc3cb087522c554aeaa0cc976.tar.gz historical-054777363513569fc3cb087522c554aeaa0cc976.tar.bz2 historical-054777363513569fc3cb087522c554aeaa0cc976.zip |
put -print0 behind -depth or find will issue a warning
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 170958666f35..e0950bbf7a73 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.1 2007/02/21 09:08:20 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/emul-libs.eclass,v 1.2 2007/02/21 09:14:13 blubb Exp $ # # Original Author: Simon Stelling <blubb@gentoo.org> @@ -39,7 +39,7 @@ emul-libs_src_install() { done # remove void directories - find "${S}" -print0 -depth -type d | xargs -0 rmdir 2&>/dev/null + find "${S}" -depth -print0 -type d | xargs -0 rmdir 2&>/dev/null cp -dpPR "${S}"/* "${D}"/ || die "copying files failed!" } |