diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-09-16 22:38:25 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-09-16 22:38:25 +0000 |
commit | 1df996d71416bcd65e3d7bd76154b4d17dcfbfbe (patch) | |
tree | 3e7e72cde5b269e009870767742bcbda69fb5570 /eclass/eutils.eclass | |
parent | Taking maintainership (diff) | |
download | historical-1df996d71416bcd65e3d7bd76154b4d17dcfbfbe.tar.gz historical-1df996d71416bcd65e3d7bd76154b4d17dcfbfbe.tar.bz2 historical-1df996d71416bcd65e3d7bd76154b4d17dcfbfbe.zip |
epatch docs: fix inverted logic in documentation
Diffstat (limited to 'eclass/eutils.eclass')
-rw-r--r-- | eclass/eutils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index 5518c6af90ad..df9f1b1a7a52 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.349 2010/08/19 21:32:26 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.350 2010/09/16 22:38:25 vapier Exp $ # @ECLASS: eutils.eclass # @MAINTAINER: @@ -202,7 +202,7 @@ EPATCH_FORCE="no" # # When processing directories, epatch will apply all patches that match: # @CODE -# ${EPATCH_FORCE} == "yes" +# if ${EPATCH_FORCE} != "yes" # ??_${ARCH}_foo.${EPATCH_SUFFIX} # else # *.${EPATCH_SUFFIX} |