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:43:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346942586.53.0.696054149451.issue15591@psf.upfronthosting.co.za>
In-reply-to
Content
The lines under each of my examples are the content of $MAKEFLAGS. It works when I pass the option in a different order and even with alternative spellings for -s like --quiet. It's always the "s" flag:

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

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

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

$ make  --jobs=4 --quiet -n
echo '"sn --jobserver-fds=3,4 -j"'

With just the -j flag $MAKEFLAGS starts with a space so the first word is empty:

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

I don't know if other make implementations work similar but I think we require GNU Make, too.
History
Date User Action Args
2012-09-06 14:43:06christian.heimessetrecipients: + christian.heimes, barry, doko, benjamin.peterson, Arfrever, python-dev
2012-09-06 14:43:06christian.heimessetmessageid: <1346942586.53.0.696054149451.issue15591@psf.upfronthosting.co.za>
2012-09-06 14:43:06christian.heimeslinkissue15591 messages
2012-09-06 14:43:05christian.heimescreate