summaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@microsoft.com>2016-06-25 23:43:26 (GMT)
committerSteve Dower <steve.dower@microsoft.com>2016-06-25 23:43:26 (GMT)
commit523ccd135c340a9e532c8bdf355cb43f8e259904 (patch)
treefe19dd069689dda3c2dd68dc38f7d1ae26b27f5a /Tools
parent6bc87b4b4dc9566c4ee8bf1a256e0f2686cf0f4b (diff)
parente7614dd07d533ec4f22007d65649175b9dee8be4 (diff)
downloadcpython-523ccd135c340a9e532c8bdf355cb43f8e259904.zip
cpython-523ccd135c340a9e532c8bdf355cb43f8e259904.tar.gz
cpython-523ccd135c340a9e532c8bdf355cb43f8e259904.tar.bz2
Merge from 3.5
Diffstat (limited to 'Tools')
-rw-r--r--Tools/nuget/make_pkg.proj3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/nuget/make_pkg.proj b/Tools/nuget/make_pkg.proj
index 15e6d8f..bd3fad8 100644
--- a/Tools/nuget/make_pkg.proj
+++ b/Tools/nuget/make_pkg.proj
@@ -6,6 +6,7 @@
<OutputName Condition="$(Platform) == 'x86'">$(OutputName)x86</OutputName>
<OutputSuffix></OutputSuffix>
<SupportSigning>false</SupportSigning>
+ <BuildForRelease Condition="$(BuildForRelease) == ''">true</BuildForRelease>
</PropertyGroup>
<Import Project="..\msi\msi.props" />
@@ -24,7 +25,7 @@
<PythonArguments>"$(PythonExe)" "$(MSBuildThisFileDirectory)\..\msi\make_zip.py"</PythonArguments>
<PythonArguments>$(PythonArguments) -t "$(IntermediateOutputPath)" -a $(ArchName)</PythonArguments>
- <PipArguments>"$(IntermediateOutputPath)\python.exe" -B -c "import sys; sys.path.append('$(PySourcePath)\Lib'); import ensurepip; ensurepip._main()"</PipArguments>
+ <PipArguments>"$(IntermediateOutputPath)\python.exe" -B -c "import sys; sys.path.append(r'$(PySourcePath)\Lib'); import ensurepip; ensurepip._main()"</PipArguments>
<NugetArguments>"$(Nuget)" pack "$(MSBuildThisFileDirectory)\$(OutputName).nuspec"</NugetArguments>
<NugetArguments>$(NugetArguments) -BasePath "$(IntermediateOutputPath)"</NugetArguments>