8e32ec9a1f
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>
32 lines
815 B
Makefile
32 lines
815 B
Makefile
#############################################################
|
|
#
|
|
# luafilesystem
|
|
#
|
|
#############################################################
|
|
|
|
LUAFILESYSTEM_VERSION = 1.5.0
|
|
LUAFILESYSTEM_SITE = http://github.com/downloads/keplerproject/luafilesystem
|
|
LUAFILESYSTEM_DEPENDENCIES = lua
|
|
|
|
ifeq ($(BR2_LARGEFILE),y)
|
|
LFS_CFLAGS = -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
|
|
endif
|
|
|
|
define LUAFILESYSTEM_BUILD_CMDS
|
|
$(MAKE) -C $(@D) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS) $(LFS_CFLAGS) -fPIC"
|
|
endef
|
|
|
|
define LUAFILESYSTEM_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D $(@D)/src/lfs.so $(TARGET_DIR)/usr/lib/lua/lfs.so
|
|
endef
|
|
|
|
define LUAFILESYSTEM_UNINSTALL_TARGET_CMDS
|
|
rm -f "$(TARGET_DIR)/usr/lib/lua/lfs.so"
|
|
endef
|
|
|
|
define LUAFILESYSTEM_CLEAN_CMDS
|
|
$(MAKE) -C $(@D) clean
|
|
endef
|
|
|
|
$(eval $(call GENTARGETS,package,luafilesystem))
|