mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
make: don't install external dependencies
Don't install external pip dependencies when running `make install`. As we are not really into developing a Python project, we should not install additional packages. CRIU does that nowhere else. Signed-off-by: Radostin Stoyanov <rstoyanov@fedoraproject.org>
This commit is contained in:
parent
3ee38564b1
commit
6377bf8885
1 changed files with 7 additions and 3 deletions
|
|
@ -46,9 +46,13 @@ endif
|
|||
endif
|
||||
|
||||
# Default flags for pip install:
|
||||
# --upgrade: Upgrade crit/pycriu packages
|
||||
# --ignore-installed: Ignore existing packages and reinstall them
|
||||
PIPFLAGS ?= --upgrade --ignore-installed
|
||||
# --ignore-installed: Overwrite already installed pycriu/crit packages
|
||||
# --no-build-isolation: Use current Python environment to build pycriu/crit packages
|
||||
# --no-deps: Don't install any dependencies
|
||||
# --no-index: Don't use PyPI index to find packages
|
||||
# --progress-bar: Cleaner output
|
||||
# --upgrade: Treat the install as an upgrade when replacing the installed version
|
||||
PIPFLAGS ?= --ignore-installed --no-build-isolation --no-deps --no-index --progress-bar off --upgrade
|
||||
|
||||
export SKIP_PIP_INSTALL PIPFLAGS
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue