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
commit65fe829b7d4099585fd7bda1e029f13c012cab6e (patch)
tree0fef6dc58bc6bdab1f0da952ef26b0953e48d3a5
parentx86 stable wrt #259142 (diff)
downloadhistorical-65fe829b7d4099585fd7bda1e029f13c012cab6e.tar.gz
historical-65fe829b7d4099585fd7bda1e029f13c012cab6e.tar.bz2
historical-65fe829b7d4099585fd7bda1e029f13c012cab6e.zip
Quote instead of escape to work-around bug in bash-4.0
-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