Issue1503717
Created on 2006-06-09 20:42 by catlee, last changed 2006-10-27 18:15 by akuchling.
| File name |
Uploaded |
Description |
Edit |
Remove |
|
Makefile.patch
|
catlee,
2006-06-09 20:42
|
patch against r46798 to stop make spam |
|
|
|
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) |
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) |
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!
|
|
| Date |
User |
Action |
Args |
| 2006-06-09 20:42:23 | catlee | create | |
|