summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Alfredsen <loki_val@gentoo.org>2009-02-22 12:31:19 +0000
committerPeter Alfredsen <loki_val@gentoo.org>2009-02-22 12:31:19 +0000
commit21bdefae7c556430f82c542a35b73e4c5f44d123 (patch)
treeaf2343254c5b71b915cb42c0011a66a7d8817a9d /eclass/x11.eclass
parentx86 stable wrt #259142 (diff)
downloadgentoo-2-21bdefae7c556430f82c542a35b73e4c5f44d123.tar.gz
gentoo-2-21bdefae7c556430f82c542a35b73e4c5f44d123.tar.bz2
gentoo-2-21bdefae7c556430f82c542a35b73e4c5f44d123.zip
Quote instead of escape to work-around bug in bash-4.0
Diffstat (limited to 'eclass/x11.eclass')
-rw-r--r--eclass/x11.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/x11.eclass b/eclass/x11.eclass
index f162a9065376..050aaa7c104c 100644
--- a/eclass/x11.eclass
+++ b/eclass/x11.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/x11.eclass,v 1.10 2006/10/14 20:27:21 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/x11.eclass,v 1.11 2009/02/22 12:31:19 loki_val Exp $
#
# Author: Seemant Kulleen <seemant@gentoo.org>
#
@@ -83,7 +83,7 @@ strip_bins() {
einfo "Stripping binaries ..."
# This bit I got from Redhat ... strip binaries and drivers ..
# NOTE: We do NOT want to strip the drivers, modules or DRI modules!
- for x in $(find ${D}/ -type f -perm +0111 -exec file {} \; | \
+ for x in $(find ${D}/ -type f -perm +0111 -exec file {} ';' | \
grep -v ' shared object,' | \
sed -n -e 's/^\(.*\):[ ]*ELF.*, not stripped/\1/p')
do