Handle .exe extension when looking for protoc in setup.py.

This commit is contained in:
kenton@google.com 2009-04-22 03:20:21 +00:00
parent bbbd4d309c
commit 4152d554c4

View file

@ -18,6 +18,8 @@ maintainer_email = "protobuf@googlegroups.com"
# Find the Protocol Compiler.
if os.path.exists("../src/protoc"):
protoc = "../src/protoc"
elif os.path.exists("../src/protoc.exe"):
protoc = "../src/protoc.exe"
else:
protoc = find_executable("protoc")