diff options
author | Stefan Schweizer <genstef@gentoo.org> | 2006-07-12 21:10:03 +0000 |
---|---|---|
committer | Stefan Schweizer <genstef@gentoo.org> | 2006-07-12 21:10:03 +0000 |
commit | 8306cd80378679ae1deaf398c56ed0168c3f700e (patch) | |
tree | 3bfd99948b1083c373ac8d76773e594aa0ab1ede /media-libs/mesa/mesa-6.5-r3.ebuild | |
parent | Mark 2.3.4 stable on ia64 (diff) | |
download | historical-8306cd80378679ae1deaf398c56ed0168c3f700e.tar.gz historical-8306cd80378679ae1deaf398c56ed0168c3f700e.tar.bz2 historical-8306cd80378679ae1deaf398c56ed0168c3f700e.zip |
Do not use xargs because it does not work for functions
Package-Manager: portage-2.1.1_pre2-r8
Diffstat (limited to 'media-libs/mesa/mesa-6.5-r3.ebuild')
-rw-r--r-- | media-libs/mesa/mesa-6.5-r3.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/media-libs/mesa/mesa-6.5-r3.ebuild b/media-libs/mesa/mesa-6.5-r3.ebuild index aeee51b8db88..2a4d6cda0cdf 100644 --- a/media-libs/mesa/mesa-6.5-r3.ebuild +++ b/media-libs/mesa/mesa-6.5-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.5-r3.ebuild,v 1.9 2006/07/12 18:39:14 dberkholz Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-6.5-r3.ebuild,v 1.10 2006/07/12 21:10:03 genstef Exp $ inherit eutils toolchain-funcs multilib flag-o-matic portability @@ -246,7 +246,8 @@ src_install() { dodir /usr/$(get_libdir)/dri exeinto /usr/$(get_libdir)/dri ebegin "Installing drivers to ${EXEDESTTREE}" - find ${S}/lib* -name '*_dri.so' | xargs doexe + DRI_SO=$(find ${S}/lib* -name '*_dri.so') + doexe ${DRI_SO} eend if ! use motif; then |