diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-08-19 21:32:26 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-08-19 21:32:26 +0000 |
commit | 155a6776c904775434101026dffbadaa5459353b (patch) | |
tree | d54e8becefa5a0322b4d524e9e81033ce9e21f5b /eclass | |
parent | Stable on amd64 wrt bug #333203 (diff) | |
download | gentoo-2-155a6776c904775434101026dffbadaa5459353b.tar.gz gentoo-2-155a6776c904775434101026dffbadaa5459353b.tar.bz2 gentoo-2-155a6776c904775434101026dffbadaa5459353b.zip |
epatch_user: return 0/1 depending on user patches actually applied
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/eutils.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index 5a9692402a0d..5518c6af90ad 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.348 2010/07/11 17:29:10 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.349 2010/08/19 21:32:26 vapier Exp $ # @ECLASS: eutils.eclass # @MAINTAINER: @@ -435,9 +435,10 @@ epatch_user() { EPATCH_FORCE="yes" \ EPATCH_MULTI_MSG="Applying user patches from ${EPATCH_SOURCE} ..." \ epatch - break + return 0 fi done + return 1 } # @FUNCTION: emktemp |