➜

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.

作者 christian.heimes
收信人 Arfrever, barry, benjamin.peterson, christian.heimes, doko, python-dev
日期 2012-09-06.14:22:53
SpamBayes Score -1.0
Marked as misclassified 是
Message-id <1346941374.76.0.482628509105.issue15591@psf.upfronthosting.co.za>
In-reply-to
内容
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.
历史
日期 用户 动作 参数
2012-09-06 14:22:54christian.heimes修改recipients: + christian.heimes, barry, doko, benjamin.peterson, Arfrever, python-dev
2012-09-06 14:22:54christian.heimes修改messageid: <1346941374.76.0.482628509105.issue15591@psf.upfronthosting.co.za>
2012-09-06 14:22:54christian.heimes链接issue15591 messages
2012-09-06 14:22:54christian.heimes创建