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.

Author Arfrever
Recipients Arfrever, njoly, obache, pitrou
Date 2011-01-02.20:17:07
SpamBayes Score 0.043000154
Marked as misclassified No
Message-id <1293999435.14.0.91312010602.issue10475@psf.upfronthosting.co.za>
In-reply-to
Content
$(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';;
History
Date User Action Args
2011-01-02 20:17:15Arfreversetrecipients: + Arfrever, pitrou, njoly, obache
2011-01-02 20:17:15Arfreversetmessageid: <1293999435.14.0.91312010602.issue10475@psf.upfronthosting.co.za>
2011-01-02 20:17:07Arfreverlinkissue10475 messages
2011-01-02 20:17:07Arfrevercreate