diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-12-29 21:11:57 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-12-29 21:16:38 +0200 |
commit | da8210b947821b2002ce7dfb34eba213a2da73a3 (patch) | |
tree | 1be3c4201446158f02061c0174a4c14c6f75a677 /tests/site_scons | |
parent | 10ef575d467db1f12406eee944212fde6c250089 (diff) |
Fix handling spaces in directory name
Diffstat (limited to 'tests/site_scons')
-rw-r--r-- | tests/site_scons/site_tools/nanopb.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/site_scons/site_tools/nanopb.py b/tests/site_scons/site_tools/nanopb.py index 0ed70464..97837666 100644 --- a/tests/site_scons/site_tools/nanopb.py +++ b/tests/site_scons/site_tools/nanopb.py @@ -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") |