diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2014-11-20 14:53:31 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-11-22 19:15:11 +0100 |
commit | d1935562e83ef0d221929d935cf3d673435c85cb (patch) | |
tree | 34d32d1523c3e2be028e6376d4d68508bc919ce2 /package/dbus-python/dbus-python.mk | |
parent | fbb8cbfdf4ef0be10d2e9b8e51cde98d2909a120 (diff) | |
download | buildroot-d1935562e83ef0d221929d935cf3d673435c85cb.tar.gz buildroot-d1935562e83ef0d221929d935cf3d673435c85cb.zip |
dbus-python: add python3 support
[Thomas: update the dependencies of the comment to take into account
that we can now also build with Python 3.]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/dbus-python/dbus-python.mk')
-rw-r--r-- | package/dbus-python/dbus-python.mk | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/package/dbus-python/dbus-python.mk b/package/dbus-python/dbus-python.mk index bc57689823..1637406c0f 100644 --- a/package/dbus-python/dbus-python.mk +++ b/package/dbus-python/dbus-python.mk @@ -9,14 +9,25 @@ DBUS_PYTHON_SITE = http://dbus.freedesktop.org/releases/dbus-python DBUS_PYTHON_INSTALL_STAGING = YES DBUS_PYTHON_LICENSE = MIT DBUS_PYTHON_LICENSE_FILES = COPYING +DBUS_PYTHON_DEPENDENCIES = dbus-glib +DBUS_PYTHON_CONF_OPTS = --disable-html-docs --disable-api-docs + +ifeq ($(BR2_PACKAGE_PYTHON),y) +DBUS_PYTHON_DEPENDENCIES += python host-python -DBUS_PYTHON_CONF_ENV = \ +DBUS_PYTHON_CONF_ENV += \ PYTHON=$(HOST_DIR)/usr/bin/python2 \ PYTHON_INCLUDES="$(shell $(STAGING_DIR)/usr/bin/python2-config --includes)" \ PYTHON_LIBS="$(shell $(STAGING_DIR)/usr/bin/python2-config --ldflags)" +else +DBUS_PYTHON_DEPENDENCIES += python3 host-python3 + +DBUS_PYTHON_CONF_ENV += \ + PYTHON=$(HOST_DIR)/usr/bin/python3 \ + PYTHON_INCLUDES="$(shell $(STAGING_DIR)/usr/bin/python3-config --includes)" \ + PYTHON_LIBS="$(shell $(STAGING_DIR)/usr/bin/python3-config --ldflags)" +endif -DBUS_PYTHON_CONF_OPTS = --disable-html-docs --disable-api-docs -DBUS_PYTHON_DEPENDENCIES = dbus-glib python host-python $(eval $(autotools-package)) |