Christian Heimes added the comment:

The fix doesn't work for me. With "make -s" I still see the output to stdout. 
Also there are much simpler ways to test for MAKEFLAGS:

ifneq (,$(findstring s,$(MAKEFLAGS)))
    QUIET="-q"
else
    QUIET=""
endif

then use $(QUIET) in the call to setup.py

----------
nosy: +christian.heimes
resolution: fixed -> 
status: closed -> open

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue15591>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to