From: Steve Dower Date: Sat, 25 Jun 2016 23:13:30 +0000 (-0700) Subject: Simplifies nuget build with better parameters. X-Git-Tag: v3.6.0a3~71^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e7614dd07d533ec4f22007d65649175b9dee8be4;p=thirdparty%2FPython%2Fcpython.git Simplifies nuget build with better parameters. --- diff --git a/Tools/nuget/make_pkg.proj b/Tools/nuget/make_pkg.proj index 15e6d8f38915..bd3fad8a37f6 100644 --- a/Tools/nuget/make_pkg.proj +++ b/Tools/nuget/make_pkg.proj @@ -6,6 +6,7 @@ $(OutputName)x86 false + true @@ -24,7 +25,7 @@ "$(PythonExe)" "$(MSBuildThisFileDirectory)\..\msi\make_zip.py" $(PythonArguments) -t "$(IntermediateOutputPath)" -a $(ArchName) - "$(IntermediateOutputPath)\python.exe" -B -c "import sys; sys.path.append('$(PySourcePath)\Lib'); import ensurepip; ensurepip._main()" + "$(IntermediateOutputPath)\python.exe" -B -c "import sys; sys.path.append(r'$(PySourcePath)\Lib'); import ensurepip; ensurepip._main()" "$(Nuget)" pack "$(MSBuildThisFileDirectory)\$(OutputName).nuspec" $(NugetArguments) -BasePath "$(IntermediateOutputPath)"