From e457975e8ce7787eb28989513f3ffb91cde1be46 Mon Sep 17 00:00:00 2001 From: Henning Peters Date: Tue, 22 Dec 2015 23:41:37 +0100 Subject: [PATCH] get mingw32 to work --- venv.ps1 | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/venv.ps1 b/venv.ps1 index 635a1c59c..71eb69c60 100644 --- a/venv.ps1 +++ b/venv.ps1 @@ -10,11 +10,10 @@ $ErrorActionPreference = "Stop" if(!(Test-Path -Path ".build")) { virtualenv .build --system-site-packages --python $python -} - -if($compiler) -{ - "[build]`r`ncompiler=$compiler" | Out-File .\.build\Lib\distutils\distutils.cfg + if($compiler) + { + "[build]`r`ncompiler=$compiler" | Out-File -Encoding ascii .\.build\Lib\distutils\distutils.cfg + } } .build\Scripts\activate.ps1