diff options
author | Steve Dower <steve.dower@microsoft.com> | 2016-12-03 19:56:44 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2016-12-03 19:56:44 (GMT) |
commit | f00ef72ee1ef4f35eaa9ad8a760c11f8c21c5383 (patch) | |
tree | 9693ff136582f40218207c2798b2b4319deea0e8 /PCbuild/pythoncore.vcxproj | |
parent | 1058109b3182522eaa4357ef99ad22b587d36c73 (diff) | |
parent | de6efdb7727853186aba02b3dbc1d59665eedc89 (diff) | |
download | cpython-f00ef72ee1ef4f35eaa9ad8a760c11f8c21c5383.zip cpython-f00ef72ee1ef4f35eaa9ad8a760c11f8c21c5383.tar.gz cpython-f00ef72ee1ef4f35eaa9ad8a760c11f8c21c5383.tar.bz2 |
Ensures intermediate directory is created before using it
Diffstat (limited to 'PCbuild/pythoncore.vcxproj')
-rw-r--r-- | PCbuild/pythoncore.vcxproj | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/PCbuild/pythoncore.vcxproj b/PCbuild/pythoncore.vcxproj index 89415ae..6b23d8e 100644 --- a/PCbuild/pythoncore.vcxproj +++ b/PCbuild/pythoncore.vcxproj @@ -412,6 +412,7 @@ <_HG Condition="$(HG.Contains(` `))">"$(HG)"</_HG> </PropertyGroup> <Message Text="Getting build info from $(_HG)" Importance="high" /> + <MakeDir Directories="$(IntDir)" Condition="!Exists($(IntDir))" /> <Exec Command="$(_HG) id -b > "$(IntDir)hgbranch.txt"" ContinueOnError="true" /> <Exec Command="$(_HG) id -i > "$(IntDir)hgversion.txt"" ContinueOnError="true" /> <Exec Command="$(_HG) id -t > "$(IntDir)hgtag.txt"" ContinueOnError="true" /> |