aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Engel <sighunter@gmx.de>2024-08-28 14:03:42 +0200
committerUlrich Müller <ulm@gentoo.org>2024-09-14 21:10:59 +0200
commitb8cea57c1a478d72ac3e4499f17122b5e7f01232 (patch)
tree57907bbefb3afe40cb6b99b31f6cc53ff7e0affb
parentarchs/x86: Remove some outdated team guidelines (diff)
downloaddevmanual-b8cea57c1a478d72ac3e4499f17122b5e7f01232.tar.gz
devmanual-b8cea57c1a478d72ac3e4499f17122b5e7f01232.tar.bz2
devmanual-b8cea57c1a478d72ac3e4499f17122b5e7f01232.zip
ebuild-writing/messages: Change ewarn to eqawarn in the example code
The message in the code block is clearly a message from an eclass author to ebuild developers and therefore should use eqawarn and not ewarn, like the "QA warnings" passage above describes. Signed-off-by: Sebastian Engel <sighunter@gmx.de> Signed-off-by: Ulrich Müller <ulm@gentoo.org>
-rw-r--r--ebuild-writing/messages/text.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/ebuild-writing/messages/text.xml b/ebuild-writing/messages/text.xml
index 830e3cf..c8c92b5 100644
--- a/ebuild-writing/messages/text.xml
+++ b/ebuild-writing/messages/text.xml
@@ -148,12 +148,12 @@ It would be better written as:
</p>
<codesample lang="ebuild">
-ewarn "The 'frozbinate' function provided by eutils.eclass is deprecated"
-ewarn "in favour of frozbinate.eclass, but this package has not been"
-ewarn "updated yet. If this is a package from the main tree, please check"
-ewarn "https://bugs.gentoo.org/ and file a bug if there is not one already."
-ewarn "If this is your own package, please read the comments in the"
-ewarn "frozbinate eclass for instructions on how to convert."
+eqawarn "The 'frozbinate' function provided by eutils.eclass is deprecated"
+eqawarn "in favour of frozbinate.eclass, but this package has not been"
+eqawarn "updated yet. If this is a package from the main tree, please check"
+eqawarn "https://bugs.gentoo.org/ and file a bug if there is not one already."
+eqawarn "If this is your own package, please read the comments in the"
+eqawarn "frozbinate eclass for instructions on how to convert."
</codesample>
</body>