shutting up glibc link warnings
The Python posix
module wraps some insecure functions (a warning is generated if they are used in Python code).
Here's a hack to silence the errors generated when linking Python (I get sick of them after a while):
cd /lib perl -pe 's/gnu.warning.(tempnam|tmpnam|tmpnam_r)/gnu.wanting.1/g' \ < libc-2.2.3.so > /tmp/libc-2.2.3.so cp -b /tmp/libc-2.2.3.so libc-2.2.3.so
No warranty. :-)