commit:     1e6accd8734a16b896d3d529c6727ef3d3c5fd9f
Author:     Vicente Jimenez Aguilar <googuy <AT> gmail <DOT> com>
AuthorDate: Mon Feb 22 13:05:41 2016 +0000
Commit:     Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Tue Feb 23 06:29:18 2016 +0000
URL:        https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=1e6accd8

ebuild-writing/functions: Add src_configure to the list of called functions

src_configure is missing from the list of called functions when
installing from source

 ebuild-writing/functions/text.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ebuild-writing/functions/text.xml 
b/ebuild-writing/functions/text.xml
index d10a51f..23d68f0 100644
--- a/ebuild-writing/functions/text.xml
+++ b/ebuild-writing/functions/text.xml
@@ -6,7 +6,8 @@
 <body>
 <p>
 When installing packages from source, the function call order is 
<c>pkg_setup</c>,
-<c>src_unpack</c>, <c>src_prepare</c>, <c>src_compile</c>, <c>src_test</c> 
(optional, <c>FEATURES="test"</c>),
+<c>src_unpack</c>, <c>src_prepare</c>, <c>src_configure</c>, 
<c>src_compile</c>,
+<c>src_test</c> (optional, <c>FEATURES="test"</c>),
 <c>src_install</c>, <c>pkg_preinst</c>, <c>pkg_postinst</c>. When installing 
packages
 from a binary, the function call order is <c>pkg_setup</c>, <c>pkg_preinst</c>,
 <c>pkg_postinst</c>.

Reply via email to