Fix handling spaces in directory name

This commit is contained in:
Petteri Aimonen
2013-12-29 21:11:57 +02:00
parent 10ef575d46
commit da8210b947
2 changed files with 4 additions and 4 deletions

View File

@@ -61,12 +61,12 @@ def _detect_protoc(env):
p1 = os.path.join(p, 'generator-bin', 'protoc')
if os.path.exists(p1):
# Use protoc bundled with binary package
return p1
return env['ESCAPE'](p1)
p = env.WhereIs('protoc')
if p:
# Use protoc from path
return p
return env['ESCAPE'](p)
raise SCons.Errors.StopError(NanopbWarning,
"Could not find the protoc compiler")