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.

classification
Title: Tiny patch to stop make spam
Type: Stage:
Components: Build Versions:
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: akuchling Nosy List: akuchling, catlee, georg.brandl
Priority: normal Keywords: patch

Created on 2006-06-09 20:42 by catlee, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
Makefile.patch catlee, 2006-06-09 20:42 patch against r46798 to stop make spam
Messages (3)
msg50449 - (view) Author: Chris AtLee (catlee) * Date: 2006-06-09 20:42
It's always bothered me that python's Makefile outputs:
case $MAKEFLAGS in \
        *-s*)  CC='gcc -pthread' LDSHARED='gcc -pthread
-shared' OPT='-DNDEBUG -g -O3 -Wall
-Wstrict-prototypes' ./python -E ./setup.py -q build;; \
        *)  CC='gcc -pthread' LDSHARED='gcc -pthread
-shared' OPT='-DNDEBUG -g -O3 -Wall
-Wstrict-prototypes' ./python -E ./setup.py build;; \
        esac

Maybe it does this for a good reason I don't know about :)

In case there isn't, here's a one-line patch to fix it.
msg50450 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2006-06-09 20:44
Logged In: YES 
user_id=849994

I'm very much for this!
msg50451 - (view) Author: A.M. Kuchling (akuchling) * (Python committer) Date: 2006-10-27 18:15
Logged In: YES 
user_id=11375

Seems like a reasonable change; applied to the trunk in
rev.52484.  Thanks!
History
Date User Action Args
2022-04-11 14:56:18adminsetgithub: 43479
2006-06-09 20:42:23catleecreate