build.py: Fix for building under Vista. Thanks to Itai Shaham for the report!

This commit is contained in:
gergely.erdelyi 2009-04-26 18:36:35 +00:00
parent 1c4a240cfb
commit 5e1871f485

View File

@ -379,6 +379,7 @@ if __name__ == "__main__":
system = platform.system() system = platform.system()
if system == "Windows" or system == "Microsoft": if system == "Windows" or system == "Microsoft":
system = "Windows"
platform_string = "win32" platform_string = "win32"
plugin_name = "python.plw" plugin_name = "python.plw"