diff options
author | Ulrich Müller <ulm@gentoo.org> | 2021-04-02 09:01:27 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2021-04-10 09:02:11 +0200 |
commit | f5c32783df86fbdb63a4b333039764aa66fbb2fc (patch) | |
tree | 724141b9a5e6ef6798e7be257eb4c6649346da02 /general-concepts | |
parent | keywording: s/archs/arches/ (diff) | |
download | devmanual-f5c32783df86fbdb63a4b333039764aa66fbb2fc.tar.gz devmanual-f5c32783df86fbdb63a4b333039764aa66fbb2fc.tar.bz2 devmanual-f5c32783df86fbdb63a4b333039764aa66fbb2fc.zip |
general-concepts/use-flags: Change example to src_configure()
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'general-concepts')
-rw-r--r-- | general-concepts/use-flags/text.xml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/general-concepts/use-flags/text.xml b/general-concepts/use-flags/text.xml index 8953b87..54675f3 100644 --- a/general-concepts/use-flags/text.xml +++ b/general-concepts/use-flags/text.xml @@ -297,7 +297,7 @@ GnuTLS is more featureful than OpenSSL, it is favoured: </p> <codesample lang="ebuild"> -src_compile() { +src_configure() { local myconf if use ssl && use gnutls ; then @@ -311,8 +311,6 @@ src_compile() { econf \ # Other stuff ${myconf} - - emake } </codesample> |