diff options
| author | Peter Korsgaard <jacmet@sunsite.dk> | 2010-07-22 09:29:57 +0200 | 
|---|---|---|
| committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-07-22 09:29:57 +0200 | 
| commit | 164d1dc0207372c448f2814f014085187e084cc3 (patch) | |
| tree | 772635440cedf44e682b26cf3342fe8d056e9d32 | |
| parent | 5af328d2dd289736670ecde6f4515ca953859b83 (diff) | |
| download | buildroot-novena-164d1dc0207372c448f2814f014085187e084cc3.tar.gz buildroot-novena-164d1dc0207372c448f2814f014085187e084cc3.zip | |
luafilesystem: tweak Config.in
Print a comment if largefile isn't available, and use select rather than
depends for the lua shared library option.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
| -rw-r--r-- | package/luafilesystem/Config.in | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/package/luafilesystem/Config.in b/package/luafilesystem/Config.in index ba6387831..6cb6c2475 100644 --- a/package/luafilesystem/Config.in +++ b/package/luafilesystem/Config.in @@ -1,9 +1,12 @@  config BR2_PACKAGE_LUAFILESYSTEM  	bool "luafilesystem"  	depends on BR2_LARGEFILE -	depends on BR2_PACKAGE_LUA_SHARED_LIBRARY +	select BR2_PACKAGE_LUA_SHARED_LIBRARY  	help  	  LuaFileSystem offers a portable way to access  	  the underlying directory structure and file attributes.  	  http://luaforge.net/projects/luafilesystem/ + +comment "luafilesystem requires a toolchain with LARGEFILE support" +	depends on !BR2_LARGEFILE | 
