[issue1675533] setup.py LDFLAGS regexp is wrong

John Lenton report at bugs.python.org
Sat Jan 19 15:46:05 CET 2008


John Lenton added the comment:

This was fixed in r57389 by georg.brandl by changing the replacement
string '' to ' ' (turning the option into a non-option).

Steps to reproduce this on Ubuntu Feisty, before that revision, were:
$ mkdir banana
$ sudo mv /usr/include/sqlite3.h banana/
$ make clean && ./configure && make
[...]
 Failed to find the necessary bits to build these modules:
_sqlite3          bsddb185          sunaudiodev    
[...]
$ make clean && CPPFLAGS=-Ibanana ./configure && make
Failed to find the necessary bits to build these modules:
bsddb185          sunaudiodev                      
$ make clean && CPPFLAGS=-Ibanana\ -Rmango ./configure && make
 Failed to find the necessary bits to build these modules:
_sqlite3          bsddb185          sunaudiodev

----------
nosy: +Chipaca

_____________________________________
Tracker <report at bugs.python.org>
<http://bugs.python.org/issue1675533>
_____________________________________


More information about the Python-bugs-list mailing list