aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-03-13 01:46:26 +0000
committerSam James <sam@gentoo.org>2022-03-13 01:46:26 +0000
commitc305a14ac84919eb93abe6c7cc6da128c18ec4a5 (patch)
tree9868b1fed512a600ce13d3c0fb9c2312d169a905 /quickstart/text.xml
parentkeywording: it's preferred to rekeyword packages with new deps (diff)
downloaddevmanual-c305a14ac84919eb93abe6c7cc6da128c18ec4a5.tar.gz
devmanual-c305a14ac84919eb93abe6c7cc6da128c18ec4a5.tar.bz2
devmanual-c305a14ac84919eb93abe6c7cc6da128c18ec4a5.zip
quickstart: make blocker non-pure-DEPEND
Blockers need to be in RDEPEND too, per devmanual guidance :) Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'quickstart/text.xml')
-rw-r--r--quickstart/text.xml5
1 files changed, 3 insertions, 2 deletions
diff --git a/quickstart/text.xml b/quickstart/text.xml
index caff4e5..9847477 100644
--- a/quickstart/text.xml
+++ b/quickstart/text.xml
@@ -320,7 +320,7 @@ replacement iconv for <c>libc</c> implementations which don't have their own.
</p>
<codesample lang="ebuild">
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -334,7 +334,8 @@ SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="nls"
-DEPEND="!sys-libs/glibc"
+RDEPEND="!sys-libs/glibc"
+DEPEND="${RDEPEND}"
src_configure() {
econf $(use_enable nls)