diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-07-04 18:48:37 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-07-04 18:48:37 (GMT) |
commit | 06606e716540d6607a0a5496ab9d81f0ee646247 (patch) | |
tree | 2d6d9be584b3b92f5a10ecbf65e616c1ed436a55 /Tools/msi/bundle | |
parent | 1b7f6fedb3472b709928e8763d0b86f99fb5d7a9 (diff) | |
download | cpython-06606e716540d6607a0a5496ab9d81f0ee646247.zip cpython-06606e716540d6607a0a5496ab9d81f0ee646247.tar.gz cpython-06606e716540d6607a0a5496ab9d81f0ee646247.tar.bz2 |
Ignore user environment/site-packages for ensurepip and compile_all
Remove build condition to prevent old strings hanging around
Add -h option to build.bat
Diffstat (limited to 'Tools/msi/bundle')
-rw-r--r-- | Tools/msi/bundle/packagegroups/postinstall.wxs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/msi/bundle/packagegroups/postinstall.wxs b/Tools/msi/bundle/packagegroups/postinstall.wxs index b20cc50..35978cc 100644 --- a/Tools/msi/bundle/packagegroups/postinstall.wxs +++ b/Tools/msi/bundle/packagegroups/postinstall.wxs @@ -36,7 +36,7 @@ <MsiProperty Name="TARGETDIR" Value="[TargetDir]" /> </MsiPackage> - <?define CompileAllCommand=-$(var.ShortVersion)$(var.Suffix32) -Wi "[TargetDir]\Lib\compileall.py" -f -x "bad_coding|badsyntax|site-packages|py2_|lib2to3\\tests|venv\\scripts" "[TargetDir]\Lib"?> + <?define CompileAllCommand=-$(var.ShortVersion)$(var.Suffix32) -E -s -Wi "[TargetDir]\Lib\compileall.py" -f -x "bad_coding|badsyntax|site-packages|py2_|lib2to3\\tests|venv\\scripts" "[TargetDir]\Lib"?> <ExePackage Id="compileall_AllUsers" SourceFile="py.exe" Compressed="yes" |