From 1b1ae154f9215177c740fe845e4123a635b4256c Mon Sep 17 00:00:00 2001 From: mirko Date: Sun, 4 Jan 2009 03:11:33 +0000 Subject: [PATCH] prohibit cython of building *.so-files - just use plain python-implementation git-svn-id: svn://svn.openwrt.org/openwrt/packages@13851 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- lang/cython/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lang/cython/Makefile b/lang/cython/Makefile index bccaec14a..9ef4f6cf1 100644 --- a/lang/cython/Makefile +++ b/lang/cython/Makefile @@ -32,7 +32,8 @@ define Package/cython/description endef define Build/Compile - $(call Build/Compile/PyMod,,install --prefix="$(PKG_INSTALL_DIR)/usr") + # <--no-cython-compile> required, otherwise setup.py calls the target-gcc to create so-files which obviously can't be used by on the host system. + $(call Build/Compile/PyMod,,install --no-cython-compile --prefix="$(PKG_INSTALL_DIR)/usr") endef define Build/InstallDev -- 2.11.0