commit c6f8fd940dc7a49798c2458b54eb1557f97e809a Author: David Fifield david@bamsoftware.com Date: Sun Dec 2 10:07:25 2012 -0800
Use --log-level=WARN in PyInstaller. --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Makefile b/Makefile index 872029f..009aeb9 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,7 @@ dist-exe: $(CLIENT_BIN) flashproxy-client.spec # PyInstaller writes "ERROR" to stderr (along with its other messages) when it # fails to find a hidden import like M2Crypto, but continues anyway and doesn't # change its error code. Grep for "ERROR" and stop if found. - $(PYTHON) $(PYINSTALLER_PY) --buildpath=$(PYINSTALLER_TMPDIR)/build flashproxy-client.spec 2>&1 | tee /dev/tty | grep -q "ERROR"; test $$? == 1 + $(PYTHON) $(PYINSTALLER_PY) --buildpath=$(PYINSTALLER_TMPDIR)/build --log-level=WARN flashproxy-client.spec 2>&1 | tee /dev/tty | grep -q "ERROR"; test $$? == 1 cp -f $(PYINSTALLER_TMPDIR)/dist/* $(DISTDIR_WIN32) cp -f README LICENSE torrc $(DISTDIR_WIN32) cp -f $(CLIENT_DIST_DOC_FILES) $(DISTDIR_WIN32)/doc
tor-commits@lists.torproject.org