Merge pull request #6053 from commodo/python-remove-ignore-installed-host

python,python3: remove `--ignore-installed` flag for host packages
This commit is contained in:
Hannu Nyman 2018-05-14 22:42:19 +03:00 committed by GitHub
commit 917b5a4ece
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 2 deletions

View file

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

View file

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