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 kristjan.jonsson
Recipients honglei.jiang, kristjan.jonsson, loewis
Date 2010-12-13.03:21:04
SpamBayes Score 2.0144997e-12
Marked as misclassified No
Message-id <1292210466.79.0.143750161095.issue10683@psf.upfronthosting.co.za>
In-reply-to
Content
Ok the problem is this line in the pre-link step, that must have gotten changed during the conversion:
"$(SolutionDir)make_buildinfo.exe" Debug "$(IntDir)"
should be
"$(SolutionDir)make_buildinfo.exe" Debug "$(IntDir)\"
This is because ($IntDir) will expand to a path ending in a backslash, thus escaping the quotes.  We have to escape the backslash using this notation.
The backslash gets removed during the automatic update of the project files.
Is there an official VS2010 build project?  If there is one, I can fix this there.

There is an alternative.  We can catch this particular error by skiping a trailing " in the path name.  This is perhaps good too, since others are bound to run into this problem.
History
Date User Action Args
2010-12-13 03:21:06kristjan.jonssonsetrecipients: + kristjan.jonsson, loewis, honglei.jiang
2010-12-13 03:21:06kristjan.jonssonsetmessageid: <1292210466.79.0.143750161095.issue10683@psf.upfronthosting.co.za>
2010-12-13 03:21:04kristjan.jonssonlinkissue10683 messages
2010-12-13 03:21:04kristjan.jonssoncreate