From: Peter Korsgaard Date: Thu, 27 Jan 2011 22:37:22 +0000 (+0100) Subject: host-python: enable expat support X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5a7192b25349e3e046ccadc1926062ffbf69cc9f;p=buildroot.git host-python: enable expat support Some packages (like libxcb) need xml support in host-python in order to build (.py file tries to import xml.etree.cElementTree). Signed-off-by: Peter Korsgaard --- diff --git a/package/python/python.mk b/package/python/python.mk index 4b80538f91..c2839b7355 100644 --- a/package/python/python.mk +++ b/package/python/python.mk @@ -18,7 +18,7 @@ HOST_PYTHON_CONF_OPT += \ --without-cxx-main \ --disable-sqlite3 \ --disable-tk \ - --with-expat=none \ + --with-expat=system \ --disable-curses \ --disable-codecs-cjk \ --disable-nis \ @@ -39,6 +39,8 @@ HOST_PYTHON_AUTORECONF = YES PYTHON_DEPENDENCIES = host-python libffi +HOST_PYTHON_DEPENDENCIES = host-expat + PYTHON_INSTALL_STAGING = YES ifeq ($(BR2_PACKAGE_PYTHON_READLINE),y)