summaryrefslogtreecommitdiffstats
path: root/package/gpsd
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2012-07-25 18:24:05 +0200
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2012-07-25 18:25:42 +0200
commitb04d89b02291021472f2f3f13b3e6f42a09d7998 (patch)
tree8c5d09b1e15045ebe7ebf9d0dff14a976777a4af /package/gpsd
parent73c6abae04aceb9f2556996d1783fde6d35e713c (diff)
downloadbuildroot-novena-b04d89b02291021472f2f3f13b3e6f42a09d7998.tar.gz
buildroot-novena-b04d89b02291021472f2f3f13b3e6f42a09d7998.zip
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>
Diffstat (limited to 'package/gpsd')
-rw-r--r--package/gpsd/gpsd.mk9
1 files changed, 2 insertions, 7 deletions
diff --git a/package/gpsd/gpsd.mk b/package/gpsd/gpsd.mk
index e96d97979..190732f09 100644
--- a/package/gpsd/gpsd.mk
+++ b/package/gpsd/gpsd.mk
@@ -20,7 +20,8 @@ GPSD_SCONS_OPTS = \
prefix=/usr\
chrpath=no\
sysroot=$(STAGING_DIR)\
- strip=no
+ strip=no\
+ python=no
ifeq ($(BR2_PACKAGE_NCURSES),y)
GPSD_DEPENDENCIES += ncurses
@@ -29,12 +30,6 @@ else
GPSD_SCONS_OPTS += ncurses=no
endif
-ifeq ($(BR2_PACKAGE_PYTHON),y)
- GPSD_DEPENDENCIES += python
-else
- GPSD_SCONS_OPTS += python=no
-endif
-
# Disable IPv6, if we don't support it
ifneq ($(BR2_INET_IPV6),y)
GPSD_SCONS_OPTS += ipv6=no