aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2015-03-17 21:09:06 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2015-03-17 21:11:49 +0000
commit06b8dc37062e8f83f08a447e6af2ba4253da4569 (patch)
treedbbdec455ce9284a4f93dc5703db4d42400a7810
parentDocument the new ALLARCHES process. (diff)
downloaddevmanual-06b8dc37062e8f83f08a447e6af2ba4253da4569.tar.gz
devmanual-06b8dc37062e8f83f08a447e6af2ba4253da4569.tar.bz2
devmanual-06b8dc37062e8f83f08a447e6af2ba4253da4569.zip
ebuild-writing: src_configure: Replace src_compile with src_configure
The src_configure function exists since EAPI=2 so we should use that one to perform any sort of package configuration. X-Gentoo-Bug: 542308 X-Gentoo-Bug-URL: https://bugs.gentoo.org/show_bug.cgi?id=542308
-rw-r--r--ebuild-writing/functions/src_configure/configuring/text.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/ebuild-writing/functions/src_configure/configuring/text.xml b/ebuild-writing/functions/src_configure/configuring/text.xml
index 677334e..4ae1101 100644
--- a/ebuild-writing/functions/src_configure/configuring/text.xml
+++ b/ebuild-writing/functions/src_configure/configuring/text.xml
@@ -63,7 +63,7 @@ src_configure() {
# ...
}
-src_compile() {
+src_configure() {
econf $(use_with X x11 )
}
</codesample>