[issue3964] quiet the freeze makefile

2010-10-21 Thread Georg Brandl
Georg Brandl added the comment: Closing as "works for me". -- resolution: -> works for me status: open -> closed ___ Python tracker ___ _

[issue3964] quiet the freeze makefile

2010-07-29 Thread Georg Brandl
Georg Brandl added the comment: Well, at least -s is mentioned in my POSIX make(1p) manpage, and I found it in an online version of the OpenBSD manpages. -- ___ Python tracker _

[issue3964] quiet the freeze makefile

2010-07-29 Thread Christian Höltje
Christian Höltje added the comment: Isn't 'make -s' a GNU make-ism? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubs

[issue3964] quiet the freeze makefile

2010-07-29 Thread Georg Brandl
Georg Brandl added the comment: Isn't the usual way to use "make -s" if you don't want echoed commands? -- nosy: +georg.brandl ___ Python tracker ___

[issue3964] quiet the freeze makefile

2010-07-05 Thread R. David Murray
R. David Murray added the comment: In my experience makes are generally pretty noisy, so I doubt it. But I don't use freeze, so we'd really need a review from someone who does. -- nosy: +r.david.murray stage: -> patch review versions: +Python 3.2 _

[issue3964] quiet the freeze makefile

2010-07-04 Thread Mark Lawrence
Mark Lawrence added the comment: Assuming the patch works (I don't do makefiles) would anyone use this yes or no? -- nosy: +BreamoreBoy ___ Python tracker ___ ___

[issue3964] quiet the freeze makefile

2008-09-25 Thread Christian Höltje
New submission from Christian Höltje <[EMAIL PROTECTED]>: The make process for building a freeze'd python script is a little noisy. This patch makes quieter unless someone adds "VERBOSE=1" to the make invocation. -- components: Demos and Tools files: freeze.quiet.patch keywords: patch m