trivial: correct capitalization of Lua in Config.in files

The Lua website says:
"Like most names, it should be written in lower case with an initial capital,
that is, "Lua". Please do not write it as "LUA", which is both ugly and
confusing, because then it becomes an acronym with different meanings for
different people."
http://www.lua.org/about.html

So, let's honor this request in buildroot.

Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Thomas De Schampheleire 2013-09-06 23:36:18 +02:00 committed by Peter Korsgaard
parent e2fa8eb91c
commit 5f9b3824da
4 changed files with 6 additions and 6 deletions

View File

@ -326,7 +326,7 @@ source "package/jimtcl/Config.in"
source "package/lua/Config.in" source "package/lua/Config.in"
source "package/luajit/Config.in" source "package/luajit/Config.in"
if BR2_PACKAGE_LUA || BR2_PACKAGE_LUAJIT if BR2_PACKAGE_LUA || BR2_PACKAGE_LUAJIT
menu "LUA libraries/modules" menu "Lua libraries/modules"
source "package/cgilua/Config.in" source "package/cgilua/Config.in"
source "package/copas/Config.in" source "package/copas/Config.in"
source "package/coxpcall/Config.in" source "package/coxpcall/Config.in"

View File

@ -33,7 +33,7 @@ config BR2_PACKAGE_DNSMASQ_LUA
bool "Lua scripting support" bool "Lua scripting support"
select BR2_PACKAGE_LUA select BR2_PACKAGE_LUA
help help
Enable lua scripting for dnsmasq Enable Lua scripting for dnsmasq
config BR2_PACKAGE_DNSMASQ_CONNTRACK config BR2_PACKAGE_DNSMASQ_CONNTRACK
bool "conntrack marking support" bool "conntrack marking support"

View File

@ -9,12 +9,12 @@ config BR2_PACKAGE_HASERL
http://haserl.sourceforge.net/ http://haserl.sourceforge.net/
config BR2_PACKAGE_HASERL_WITH_LUA config BR2_PACKAGE_HASERL_WITH_LUA
bool "lua support" bool "Lua support"
depends on BR2_PACKAGE_HASERL depends on BR2_PACKAGE_HASERL
depends on BR2_PACKAGE_HASERL_VERSION_0_9_X depends on BR2_PACKAGE_HASERL_VERSION_0_9_X
select BR2_PACKAGE_LUA select BR2_PACKAGE_LUA
help help
Enable LUA support for haserl Enable Lua support for haserl
choice choice
prompt "Haserl version" prompt "Haserl version"

View File

@ -21,13 +21,13 @@ config BR2_PACKAGE_LUA_INTERPRETER_READLINE
select BR2_PACKAGE_READLINE select BR2_PACKAGE_READLINE
select BR2_PACKAGE_NCURSES select BR2_PACKAGE_NCURSES
help help
Enables command-line editing in the lua interpreter. Enables command-line editing in the Lua interpreter.
config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE config BR2_PACKAGE_LUA_INTERPRETER_LINENOISE
bool "linenoise support" bool "linenoise support"
select BR2_PACKAGE_LINENOISE select BR2_PACKAGE_LINENOISE
help help
Enables command-line editing in the lua interpreter. Enables command-line editing in the Lua interpreter.
endchoice endchoice