gpsd: disable Python support

The Python support is not cross-compile friendly (uses host compiler,
installs in wrong location, etc.) and nobody needs it at the moment,
so leave that to the first person who will need Python support for
gpsd.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Thomas Petazzoni 2012-07-25 18:24:05 +02:00
parent 73c6abae04
commit b04d89b022

View File

@ -20,7 +20,8 @@ GPSD_SCONS_OPTS = \
prefix=/usr\ prefix=/usr\
chrpath=no\ chrpath=no\
sysroot=$(STAGING_DIR)\ sysroot=$(STAGING_DIR)\
strip=no strip=no\
python=no
ifeq ($(BR2_PACKAGE_NCURSES),y) ifeq ($(BR2_PACKAGE_NCURSES),y)
GPSD_DEPENDENCIES += ncurses GPSD_DEPENDENCIES += ncurses
@ -29,12 +30,6 @@ else
GPSD_SCONS_OPTS += ncurses=no GPSD_SCONS_OPTS += ncurses=no
endif endif
ifeq ($(BR2_PACKAGE_PYTHON),y)
GPSD_DEPENDENCIES += python
else
GPSD_SCONS_OPTS += python=no
endif
# Disable IPv6, if we don't support it # Disable IPv6, if we don't support it
ifneq ($(BR2_INET_IPV6),y) ifneq ($(BR2_INET_IPV6),y)
GPSD_SCONS_OPTS += ipv6=no GPSD_SCONS_OPTS += ipv6=no