summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMarek Szuba <marecki@gentoo.org>2020-11-05 12:31:51 +0100
committerMarek Szuba <marecki@gentoo.org>2020-11-05 12:49:06 +0100
commit113722f502c51e2a8320a39d34f76621064c6c19 (patch)
treed9e1909101f578b3b5d9afcc37363e550b3b18f5 /eclass
parentnet-misc/icaclient: Fixed src_install() for x86 (diff)
downloadgentoo-113722f502c51e2a8320a39d34f76621064c6c19.tar.gz
gentoo-113722f502c51e2a8320a39d34f76621064c6c19.tar.bz2
gentoo-113722f502c51e2a8320a39d34f76621064c6c19.zip
lua.eclass: Fix eclassdoc indentation
Must use spaces instead of tabs in code examples in order for them to be properly indented in generated man pages etc. Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r--eclass/lua.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/lua.eclass b/eclass/lua.eclass
index 8ade9c0f0796..46d9e848c87f 100644
--- a/eclass/lua.eclass
+++ b/eclass/lua.eclass
@@ -38,15 +38,15 @@
# REQUIRED_USE="${LUA_REQUIRED_USE}"
# DEPEND="${LUA_DEPS}"
# RDEPEND="${DEPEND}
-# dev-lua/foo[${LUA_USEDEP}]"
+# dev-lua/foo[${LUA_USEDEP}]"
# BDEPEND="virtual/pkgconfig"
#
# lua_src_install() {
-# emake LUA_VERSION="$(lua_get_version)" install
+# emake LUA_VERSION="$(lua_get_version)" install
# }
#
# src_install() {
-# lua_foreach_impl lua_src_install
+# lua_foreach_impl lua_src_install
# }
# @CODE