This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author christian.heimes
Recipients Arfrever, barry, benjamin.peterson, christian.heimes, doko, python-dev
Date 2012-09-06.14:22:53
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346941374.76.0.482628509105.issue15591@psf.upfronthosting.co.za>
In-reply-to
Content
Ah, got it. GNU sorts the arguments in MAKEFLAGS. The "s" flag is always in the first word.

$ make -j4 -s
"s --jobserver-fds=3,4 -j"

$ make --quiet -j4
"s --jobserver-fds=3,4 -j"

This make code works well for me:

ifeq (s,$(findstring s,$(word 1,$(MAKEFLAGS))))
    QUIET=-q
else
    QUIET=
endif

I've attached a patch that also fixes the quiet option for ctypes configure script.
History
Date User Action Args
2012-09-06 14:22:54christian.heimessetrecipients: + christian.heimes, barry, doko, benjamin.peterson, Arfrever, python-dev
2012-09-06 14:22:54christian.heimessetmessageid: <1346941374.76.0.482628509105.issue15591@psf.upfronthosting.co.za>
2012-09-06 14:22:54christian.heimeslinkissue15591 messages
2012-09-06 14:22:54christian.heimescreate