summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-04-17 04:05:01 +0000
committerMike Frysinger <vapier@gentoo.org>2006-04-17 04:05:01 +0000
commite6c315c66043b37b05fb428ef4a047967fd41c73 (patch)
tree1c09bcca0fa24c7264735850aaa8d193504c5d35 /eclass
parentStable on x86; bug #129136 (diff)
downloadgentoo-2-e6c315c66043b37b05fb428ef4a047967fd41c73.tar.gz
gentoo-2-e6c315c66043b37b05fb428ef4a047967fd41c73.tar.bz2
gentoo-2-e6c315c66043b37b05fb428ef4a047967fd41c73.zip
hide pointless output for makeinfo check
Diffstat (limited to 'eclass')
-rw-r--r--eclass/toolchain-binutils.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/toolchain-binutils.eclass b/eclass/toolchain-binutils.eclass
index ae6d04a25999..7ea3c2ecb74e 100644
--- a/eclass/toolchain-binutils.eclass
+++ b/eclass/toolchain-binutils.eclass
@@ -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/eclass/toolchain-binutils.eclass,v 1.58 2006/04/02 22:55:01 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain-binutils.eclass,v 1.59 2006/04/17 04:05:01 vapier Exp $
# We install binutils into CTARGET-VERSION specific directories. This lets
# us easily merge multiple versions for multiple targets (if we wish) and
@@ -182,7 +182,7 @@ toolchain-binutils_src_compile() {
# only build info pages if we user wants them, and if
# we have makeinfo (may not exist when we bootstrap)
if ! has noinfo ${FEATURES} ; then
- if type -p makeinfo ; then
+ if type -p makeinfo > /dev/null ; then
make info || die "make info failed"
fi
fi