Arfrever Frehtes Taifersar Arahesis <arfrever....@gmail.com> added the comment:

$(CC) and $(CXX) should be expanded by `make`, but configure.in contains wrong 
quoting, which results in incorrect expansion during running `configure`.

-LDSHARED="$(CC) -shared"
-LDCXXSHARED="$(CXX) -shared";;
+LDSHARED='$(CC) -shared'
+LDCXXSHARED='$(CXX) -shared';;

----------
nosy: +Arfrever

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue10475>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to