summaryrefslogtreecommitdiffstats
path: root/package/luafilesystem
diff options
context:
space:
mode:
authorPeter Korsgaard <jacmet@sunsite.dk>2010-08-29 23:36:46 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2010-08-29 23:36:46 +0200
commit8e32ec9a1fa9a520017594b38c6e261e2c5f490d (patch)
tree55a704fd80a4582f4fb1e07aaccdf79b21564b11 /package/luafilesystem
parentc4cdcc3680c5dc551fa563b2133ca83c55967495 (diff)
downloadbuildroot-novena-8e32ec9a1fa9a520017594b38c6e261e2c5f490d.tar.gz
buildroot-novena-8e32ec9a1fa9a520017594b38c6e261e2c5f490d.zip
luafilesystems: unbreak builds with largefile support
A typo was introduced in e6c4ce6c (luafilesystem: remove LARGE_FILE constraint), breaking the build when largefile support was enabled. Reported-by: Marcus Osdoba <marcus.osdoba@googlemail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/luafilesystem')
-rw-r--r--package/luafilesystem/luafilesystem.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/luafilesystem/luafilesystem.mk b/package/luafilesystem/luafilesystem.mk
index e68873414..5f1119a63 100644
--- a/package/luafilesystem/luafilesystem.mk
+++ b/package/luafilesystem/luafilesystem.mk
@@ -9,7 +9,7 @@ LUAFILESYSTEM_SITE = http://github.com/downloads/keplerproject/luafilesystem
LUAFILESYSTEM_DEPENDENCIES = lua
ifeq ($(BR2_LARGEFILE),y)
-LFS_CFLAGS = -D_FILE_OFFSET_BITS=64 _LARGEFILE64_SOURCE
+LFS_CFLAGS = -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
endif
define LUAFILESYSTEM_BUILD_CMDS