Browse Source

python,python3: remove `--ignore-installed` flag for host packages

This was copied over from python-packages, when support for installing
packages host-side (via pip) was added.

Based on the discussion on this commit:
  612c53fc6c
it was mentioned that removing this may add more benefit in terms of
reducing build time, because packages won't get reinstalled every time.

I'm not entirely sure about any potential side-effects of this, but it's
worth trying it out.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
lilik-openwrt-22.03
Alexandru Ardelean 6 years ago
parent
commit
995b48121e
2 changed files with 0 additions and 2 deletions
  1. +0
    -1
      lang/python/python-host.mk
  2. +0
    -1
      lang/python/python3-host.mk

+ 0
- 1
lang/python/python-host.mk View File

@ -76,7 +76,6 @@ define host_python_pip_install
$(HOST_PYTHON_PIP) install \
--root=$(1) \
--prefix=$(2) \
--ignore-installed \
$(3)
endef


+ 0
- 1
lang/python/python3-host.mk View File

@ -76,7 +76,6 @@ define host_python3_pip_install
$(HOST_PYTHON3_PIP) install \
--root=$(1) \
--prefix=$(2) \
--ignore-installed \
$(3)
endef


Loading…
Cancel
Save