]> granicus.if.org Git - python/commit
issue 10683
authorKristján Valur Jónsson <kristjan@ccpgames.com>
Mon, 13 Dec 2010 03:32:10 +0000 (03:32 +0000)
committerKristján Valur Jónsson <kristjan@ccpgames.com>
Mon, 13 Dec 2010 03:32:10 +0000 (03:32 +0000)
commit8d28a92eda3b5ab03552f6cf6b1cdce27445fb3e
treeceb969445325b2d126f17061523ab284d0b81612
parent3c54ea6abae67e776d8c29921b1790dd50644c20
issue 10683
When the solution is converted to Visual Studio 2010, the command line to invoke make_buildinfo changes from:
$(SolutionDir)make_buildinfo.exe" Debug "$(IntDir)\"
to
$(SolutionDir)make_buildinfo.exe" Debug "$(IntDir)"
If the final backslash is omitted, the backslash in IntDir will escape the quote, thus passing the quote in as part of the path name.

This solution is a hack-fix to that problem by skipping any trailing quote from the path name.  It works as long as we don't need any additional arguments to make_buildinfo.exe.  This will help all those sould that are going to run this project through the visual studio autoconverter and get the same error.
PCbuild/make_buildinfo.c