commit: 0fe777092c9ea8b80d311a2da9ded592e7870157 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org> AuthorDate: Mon May 5 02:48:59 2014 +0000 Commit: Markos Chandras <hwoarang <AT> gentoo <DOT> org> CommitDate: Mon May 5 10:19:53 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/devmanual.git;a=commit;h=0fe77709
src_install: Fix two instances where the language presumed ordered EAPIs. Link: https://bugs.gentoo.org/show_bug.cgi?id=486146#c15 --- ebuild-writing/functions/src_install/text.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ebuild-writing/functions/src_install/text.xml b/ebuild-writing/functions/src_install/text.xml index 2e86cc3..530baf1 100644 --- a/ebuild-writing/functions/src_install/text.xml +++ b/ebuild-writing/functions/src_install/text.xml @@ -32,7 +32,8 @@ <title>Default <c>src_install</c></title> <body> <p> -For EAPI < 4, the default <c>src_install</c> function is the following: +For EAPIs 0,1,2, and 3, the default <c>src_install</c> function is the +following: </p> <codesample lang="ebuild"> src_install() @@ -41,7 +42,7 @@ src_install() } </codesample> <p> -For EAPI ≥ 4, the default <c>src_install</c> function is the following: +For EAPIs 4 and later, the default <c>src_install</c> function is the following: </p> <codesample lang="ebuild"> src_install() {
