aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGöktürk Yüksek <gokturk@gentoo.org>2017-12-21 19:12:40 -0500
committerGöktürk Yüksek <gokturk@gentoo.org>2018-01-03 00:17:11 -0500
commit8c24be3239906196b973ff14197650e7702e953c (patch)
treebbf3488a56dd83b525e37fc40547ba4090c71be9 /ebuild-writing/messages/text.xml
parentebuild-maintenance: remove the Gentoo-Bug tag in the package removal subsection (diff)
downloaddevmanual-8c24be3239906196b973ff14197650e7702e953c.tar.gz
devmanual-8c24be3239906196b973ff14197650e7702e953c.tar.bz2
devmanual-8c24be3239906196b973ff14197650e7702e953c.zip
Change the indentation for ebuild <codesample/> snippets from spaces to tabs
Diffstat (limited to 'ebuild-writing/messages/text.xml')
-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 1012edf..f8b81d6 100644
--- a/ebuild-writing/messages/text.xml
+++ b/ebuild-writing/messages/text.xml
@@ -45,9 +45,9 @@ with a green asterisk. On earlier versions, elog behaves just like einfo.
<codesample lang="ebuild">
pkg_postinst() {
- elog "You will need to set up your /etc/foo/foo.conf file before"
- elog "running foo for the first time. For details, please see the"
- elog "foo.conf(5) manual page."
+ elog "You will need to set up your /etc/foo/foo.conf file before"
+ elog "running foo for the first time. For details, please see the"
+ elog "foo.conf(5) manual page."
}
</codesample>
@@ -61,8 +61,8 @@ logged by default.
<codesample lang="ebuild">
src_compile() {
- einfo "Starting a silent compile that takes hours."
- ./build
+ einfo "Starting a silent compile that takes hours."
+ ./build
}
</codesample>
@@ -129,7 +129,7 @@ Here is an example of a bad message:
<codesample lang="ebuild">
i=10
while ((i--)) ; do
- ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass"
+ ewarn "PLEASE UPDATE TO YOUR PACKAGE TO USE linux-info.eclass"
done
</codesample>