diff options
author | 2005-05-24 03:17:19 +0000 | |
---|---|---|
committer | 2005-05-24 03:17:19 +0000 | |
commit | 2276885065087e3f7b1fd9297482977aee655c0e (patch) | |
tree | 489897d7b1ff20e3e60c2b2465c12c867d8f406f /eclass/eutils.eclass | |
parent | Fileset 0.3 for 6.8.2-r2, fileset 0.2 for 6.8.99.5. (#24399) Stop *DM from th... (diff) | |
download | gentoo-2-2276885065087e3f7b1fd9297482977aee655c0e.tar.gz gentoo-2-2276885065087e3f7b1fd9297482977aee655c0e.tar.bz2 gentoo-2-2276885065087e3f7b1fd9297482977aee655c0e.zip |
control the multi message output in epatch
Diffstat (limited to 'eclass/eutils.eclass')
-rw-r--r-- | eclass/eutils.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index b53d54935ab7..759da48196e7 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.172 2005/05/20 02:09:19 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.173 2005/05/24 03:17:19 vapier Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -127,6 +127,8 @@ EPATCH_OPTS="-g0 --no-backup-if-mismatch" EPATCH_EXCLUDE="" # Change the printed message for a single patch. EPATCH_SINGLE_MSG="" +# Change the printed message for multiple patches. +EPATCH_MULTI_MSG="Applying various patches (bugfixes/updates) ..." # Force applying bulk patches even if not following the style: # # ??_${ARCH}_foo.${EPATCH_SUFFIX} @@ -240,7 +242,7 @@ epatch() { if [ "${SINGLE_PATCH}" = "no" ] then - einfo "Applying various patches (bugfixes/updates) ..." + einfo "${EPATCH_MULTI_MSG}" fi for x in ${EPATCH_SOURCE} do |