diff --git a/Makefile b/Makefile index 5c13b2d..678328d 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,8 @@ all: install # Install the package install: @echo "Installing deb-mock..." - @python3 -c "import setuptools" 2>/dev/null || (echo "Installing setuptools..." && python3 -m pip install setuptools wheel build) + @python3 -c "import setuptools" 2>/dev/null || (echo "Installing setuptools..." && python3 -m pip install setuptools wheel build --break-system-packages) + @python3 -c "import build" 2>/dev/null || (echo "Installing build..." && python3 -m pip install build --break-system-packages) @python3 -m build --wheel @python3 -m pip install dist/*.whl --break-system-packages