Use verbose flag for pip install for debug target

This commit is contained in:
Andrew Murray 2022-11-04 20:26:39 +11:00
parent d93b9919e3
commit bbe9cc6ae5

View File

@ -67,7 +67,7 @@ debug:
# for our stuff, kills optimization, and redirects to dev null so we
# see any build failures.
make clean > /dev/null
CFLAGS='-g -O0' python3 -m pip install --global-option="build_ext" . > /dev/null
CFLAGS='-g -O0' python3 -m pip -v install --global-option="build_ext" . > /dev/null
.PHONY: release-test
release-test: