diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-11-23 11:42:47 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-11-23 11:42:47 +0100 |
commit | a1deb18ba670d84257d9f6fecf579a9787e7449c (patch) | |
tree | 2db68e14977a7acebe7b39ffc53c2cc02802f9c7 /package/gamin/gamin.mk | |
parent | 57ea7207bc68d047a7940db69947b776a89d240b (diff) |
gamin: fix build with !BR2_LARGEFILE and python enabled
Python binding support is broken for cross compilation, disable for now.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/gamin/gamin.mk')
-rw-r--r-- | package/gamin/gamin.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/gamin/gamin.mk b/package/gamin/gamin.mk index 90b215a91..1aa5f8be0 100644 --- a/package/gamin/gamin.mk +++ b/package/gamin/gamin.mk @@ -12,9 +12,8 @@ GAMIN_INSTALL_TARGET = YES GAMIN_CONF_OPT = --program-prefix="" --disable-debug -ifneq ($(BR2_PACKAGE_PYTHON),y) +# python support broken GAMIN_CONF_OPT += --without-python -endif GAMIN_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install @@ -22,6 +21,8 @@ GAMIN_CONF_ENV = have_abstract_sockets=no ifneq ($(BR2_LARGEFILE),y) GAMIN_CONF_ENV += CC="$(TARGET_CC) $(TARGET_CFLAGS) -DNO_LARGEFILE_SOURCE" +# the above doesn't work with shared config.cache +GAMIN_USE_CONFIG_CACHE = NO endif GAMIN_DEPENDENCIES = libglib2 |