diff options
author | Tim Golden <mail@timgolden.me.uk> | 2014-05-09 17:19:31 (GMT) |
---|---|---|
committer | Tim Golden <mail@timgolden.me.uk> | 2014-05-09 17:19:31 (GMT) |
commit | 4b8dd71d0aae6ac1c065c3141d55752515585ad8 (patch) | |
tree | 31f322969b65ac574240e2391540800c9acfd1e1 /PCbuild | |
parent | faf4d9ca8b35cd300caf8c2cd949b6ae4437a42b (diff) | |
parent | 877013fe14d6e20ab917e64badec3c8aab3fac59 (diff) | |
download | cpython-4b8dd71d0aae6ac1c065c3141d55752515585ad8.zip cpython-4b8dd71d0aae6ac1c065c3141d55752515585ad8.tar.gz cpython-4b8dd71d0aae6ac1c065c3141d55752515585ad8.tar.bz2 |
Issue21452 Add missing backslash to build path for make_buildinfo
Diffstat (limited to 'PCbuild')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index f2c17ac..6021cd7 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -173,7 +173,7 @@ </ResourceCompile> <PreLinkEvent> <Message>Generate build information...</Message> - <Command>"$(SolutionDir)make_buildinfo.exe" Release "$(IntDir)"</Command> + <Command>"$(SolutionDir)make_buildinfo.exe" Release "$(IntDir)\"</Command> </PreLinkEvent> <Link> <AdditionalDependencies>$(IntDir)getbuildinfo.o;%(AdditionalDependencies)</AdditionalDependencies> @@ -209,7 +209,7 @@ IF %ERRORLEVEL% NEQ 0 ( </ResourceCompile> <PreLinkEvent> <Message>Generate build information...</Message> - <Command>"$(SolutionDir)make_buildinfo.exe" Release "$(IntDir)"</Command> + <Command>"$(SolutionDir)make_buildinfo.exe" Release "$(IntDir)\"</Command> </PreLinkEvent> <Link> <AdditionalDependencies>$(IntDir)getbuildinfo.o;%(AdditionalDependencies)</AdditionalDependencies> @@ -314,7 +314,7 @@ IF %ERRORLEVEL% NEQ 0 ( </ResourceCompile> <PreLinkEvent> <Message>Generate build information...</Message> - <Command>"$(SolutionDir)make_buildinfo.exe" Release "$(IntDir)"</Command> + <Command>"$(SolutionDir)make_buildinfo.exe" Release "$(IntDir)\"</Command> </PreLinkEvent> <Link> <AdditionalDependencies>$(IntDir)getbuildinfo.o;%(AdditionalDependencies)</AdditionalDependencies> @@ -350,7 +350,7 @@ IF %ERRORLEVEL% NEQ 0 ( </ResourceCompile> <PreLinkEvent> <Message>Generate build information...</Message> - <Command>"$(SolutionDir)make_buildinfo.exe" Release "$(IntDir)"</Command> + <Command>"$(SolutionDir)make_buildinfo.exe" Release "$(IntDir)\"</Command> </PreLinkEvent> <Link> <AdditionalDependencies>$(IntDir)getbuildinfo.o;%(AdditionalDependencies)</AdditionalDependencies> @@ -383,7 +383,7 @@ IF %ERRORLEVEL% NEQ 0 ( </ResourceCompile> <PreLinkEvent> <Message>Generate build information...</Message> - <Command>"$(SolutionDir)make_buildinfo.exe" Release "$(IntDir)"</Command> + <Command>"$(SolutionDir)make_buildinfo.exe" Release "$(IntDir)\"</Command> </PreLinkEvent> <Link> <AdditionalDependencies>$(IntDir)getbuildinfo.o;%(AdditionalDependencies)</AdditionalDependencies> @@ -419,7 +419,7 @@ IF %ERRORLEVEL% NEQ 0 ( </ResourceCompile> <PreLinkEvent> <Message>Generate build information...</Message> - <Command>"$(SolutionDir)make_buildinfo.exe" Release "$(IntDir)"</Command> + <Command>"$(SolutionDir)make_buildinfo.exe" Release "$(IntDir)\"</Command> </PreLinkEvent> <Link> <AdditionalDependencies>$(IntDir)getbuildinfo.o;%(AdditionalDependencies)</AdditionalDependencies> |