commit 3654527f80d4b2efb2ecf7e41082fa515e776b2c Author: Isis Lovecruft isis@torproject.org Date: Tue Oct 15 05:05:34 2013 +0000
Change 'install' and 'force_install' Makefile directive to be verbose again. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile index b932701..43dfa38 100644 --- a/Makefile +++ b/Makefile @@ -9,12 +9,12 @@ test: python setup.py test
install: - -python setup.py compile_catalog 2>&1 >/dev/null + -python setup.py compile_catalog python setup.py install --record installed-files.txt
force-install: - -python setup.py compile_catalog 2>&1 >/dev/null - python setup.py install --force --record installed-files.txt 2>&1 >/dev/null + -python setup.py compile_catalog + python setup.py install --force --record installed-files.txt
uninstall: touch installed-files.txt
tor-commits@lists.torproject.org