diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-11-05 20:39:37 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-11-05 20:39:37 +0000 |
commit | ab61607c0c3a39345dd63e2522f0925bea005da6 (patch) | |
tree | b544aebcfb8efb1f368940779303dbc72353c93c /package/lua/Config.in | |
parent | a4aba1a32f3c33f6076d9aa2a9cf39ccaf473742 (diff) | |
download | master-187ad058-ab61607c0c3a39345dd63e2522f0925bea005da6.tar.gz master-187ad058-ab61607c0c3a39345dd63e2522f0925bea005da6.tar.bz2 master-187ad058-ab61607c0c3a39345dd63e2522f0925bea005da6.zip |
fix lua build broken by [2333]
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2340 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/lua/Config.in')
-rw-r--r-- | package/lua/Config.in | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/package/lua/Config.in b/package/lua/Config.in index d62e9931d3..0b2e850bad 100644 --- a/package/lua/Config.in +++ b/package/lua/Config.in @@ -3,7 +3,7 @@ menu "lua............................... LUA programming language" config BR2_COMPILE_LUA bool default y - depends BR2_PACKAGE_LUA_INTERPRETER || BR2_PACKAGE_LUA_COMPILER || BR2_PACKAGE_LIBLUA + depends BR2_PACKAGE_LIBLUA config BR2_PACKAGE_LIBLUA prompt "liblua............................ LUA programming language shared libraries" @@ -30,11 +30,10 @@ config BR2_PACKAGE_LIBLUA This package contains the LUA shared libraries, needed by other programs. -config BR2_PACKAGE_LUA_INTERPRETER +config BR2_PACKAGE_LUA prompt "lua............................... LUA programming language interpreter" tristate default m if CONFIG_DEVEL - select BR2_COMPILE_LUA select BR2_PACKAGE_LIBLUA help Lua is a powerful light-weight programming language designed for extending @@ -57,11 +56,10 @@ config BR2_PACKAGE_LUA_INTERPRETER This package contains the LUA language interpreter. -config BR2_PACKAGE_LUA_COMPILER +config BR2_PACKAGE_LUAC prompt "luac.............................. LUA programming language compiler" tristate default m if CONFIG_DEVEL - select BR2_COMPILE_LUA select BR2_PACKAGE_LIBLUA help Lua is a powerful light-weight programming language designed for extending @@ -88,8 +86,7 @@ config BR2_PACKAGE_LUA_EXAMPLES prompt "lua-examples...................... LUA programming language examples" tristate default m if CONFIG_DEVEL - select BR2_COMPILE_LUA - select BR2_PACKAGE_LUA_INTERPRETER + select BR2_PACKAGE_LUA help Lua is a powerful light-weight programming language designed for extending applications. Lua is also frequently used as a general-purpose, stand-alone |