summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2012-01-15 20:03:50 +0000
committerMichał Górny <mgorny@gentoo.org>2012-01-15 20:03:50 +0000
commit80be9d4c98cb3772aa8d0ced6533b0afe80db5cb (patch)
treecfb38dedb3f690efc7f8db1cccdf6b349e72baee /eclass
parenteat leading space (diff)
downloadgentoo-2-80be9d4c98cb3772aa8d0ced6533b0afe80db5cb.tar.gz
gentoo-2-80be9d4c98cb3772aa8d0ced6533b0afe80db5cb.tar.bz2
gentoo-2-80be9d4c98cb3772aa8d0ced6533b0afe80db5cb.zip
Quiet grep output.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/autotools-utils.eclass4
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 1ca07c078f2c..bf9ec3c79570 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.89 2012/01/15 17:11:08 idl0r Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.90 2012/01/15 20:03:50 mgorny Exp $
+
+ 15 Jan 2012; Michał Górny <mgorny@gentoo.org> autotools-utils.eclass:
+ Quiet grep output.
15 Jan 2012; Christian Ruppert <idl0r@gentoo.org> vdr-plugin.eclass:
Add EAPI 4 support
diff --git a/eclass/autotools-utils.eclass b/eclass/autotools-utils.eclass
index d14061d8be62..4f54814da355 100644
--- a/eclass/autotools-utils.eclass
+++ b/eclass/autotools-utils.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.42 2012/01/15 16:40:12 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-utils.eclass,v 1.43 2012/01/15 20:03:50 mgorny Exp $
# @ECLASS: autotools-utils.eclass
# @MAINTAINER:
@@ -398,7 +398,7 @@ autotools-utils_src_configure() {
local econfargs=()
_check_build_dir
- if "${ECONF_SOURCE}"/configure --help 2>&1 | grep '^ *--docdir='; then
+ if "${ECONF_SOURCE}"/configure --help 2>&1 | grep -q '^ *--docdir='; then
econfargs+=(
--docdir="${EPREFIX}"/usr/share/doc/${PF}
)