Browse Source

python: remove argument for `--with-system-ffi` configure arg (based on python3)

And apparently `--with-system-ffi` does not take any arguments.
But it's only in Python 3.6 that a check was added for that.
After checking, Python 2.7 does not take any args either
for `--with-system-ffi` ; so, remove it [for the case when this
change may get backported].

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
lilik-openwrt-22.03
Alexandru Ardelean 8 years ago
parent
commit
9d876738b2
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      lang/python/Makefile

+ 2
- 2
lang/python/Makefile View File

@ -127,7 +127,7 @@ CONFIGURE_ARGS+= \
--enable-shared \
--without-cxx-main \
--with-threads \
--with-system-ffi="$(STAGING_DIR)/usr" \
--with-system-ffi \
--without-pymalloc \
$(ENABLE_IPV6) \
CONFIG_SITE="$(PKG_BUILD_DIR)/config.site" \
@ -227,7 +227,7 @@ HOST_CONFIGURE_ARGS+= \
--prefix=$(HOST_PYTHON_DIR) \
--exec-prefix=$(HOST_PYTHON_DIR) \
--with-system-expat=$(STAGING_DIR_HOSTPKG) \
--with-system-ffi=$(STAGING_DIR_HOSTPKG) \
--with-system-ffi \
CONFIG_SITE= \
CFLAGS="$(HOST_CFLAGS)"


Loading…
Cancel
Save