aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-07-04 08:14:30 +0000
committerMike Frysinger <vapier@gentoo.org>2005-07-04 08:14:30 +0000
commit8a1d752669b22c0ebeeb4d24f47b5a3a1322dea8 (patch)
tree1d2833b1b7fe8d1a029b22ed6326d3eaa15d50b8 /bin
parentabort if binaries have null RPATHs (diff)
downloadportage-cvs-8a1d752669b22c0ebeeb4d24f47b5a3a1322dea8.tar.gz
portage-cvs-8a1d752669b22c0ebeeb4d24f47b5a3a1322dea8.tar.bz2
portage-cvs-8a1d752669b22c0ebeeb4d24f47b5a3a1322dea8.zip
fix gnuconfig find expression #93363
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ebuild-functions.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ebuild-functions.sh b/bin/ebuild-functions.sh
index 5ef3f38..89211e2 100755
--- a/bin/ebuild-functions.sh
+++ b/bin/ebuild-functions.sh
@@ -2,7 +2,7 @@
# ebuild-functions.sh; ebuild env functions, saved with the ebuild (not specific to the portage version).
# Copyright 2004-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-$Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/bin/ebuild-functions.sh,v 1.11 2005/05/22 10:44:44 vapier Exp $
+# $Header: /local/data/ulm/cvs/history/var/cvsroot/gentoo-src/portage/bin/ebuild-functions.sh,v 1.12 2005/07/04 08:14:30 vapier Exp $
use() {
if useq ${1}; then
@@ -75,7 +75,7 @@ econf() {
if [ -x "${ECONF_SOURCE}/configure" ]; then
if [ -e /usr/share/gnuconfig/ ]; then
local x
- for x in $(find "${WORKDIR}" -type f -name config.guess -o -name config.sub) ; do
+ for x in $(find "${WORKDIR}" -type f '(' -name config.guess -o -name config.sub ')') ; do
echo " * econf: updating ${x/${WORKDIR}\/} with /usr/share/gnuconfig/${x##*/}"
cp -f "/usr/share/gnuconfig/${x##*/}" "${x}"
chmod a+x "${x}"