diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-12-29 21:36:06 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-12-29 21:36:06 +0200 |
commit | 125b49bf24883585d6826b8d72e14ccdfae41206 (patch) | |
tree | c59429f9a040401a315045b4b998bec40478082f /tests/site_scons/site_tools/nanopb.py | |
parent | da8210b947821b2002ce7dfb34eba213a2da73a3 (diff) |
Fix spaces in paths on Windows also
Diffstat (limited to 'tests/site_scons/site_tools/nanopb.py')
-rw-r--r-- | tests/site_scons/site_tools/nanopb.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/site_scons/site_tools/nanopb.py b/tests/site_scons/site_tools/nanopb.py index 9783766..9197e19 100644 --- a/tests/site_scons/site_tools/nanopb.py +++ b/tests/site_scons/site_tools/nanopb.py @@ -58,7 +58,7 @@ def _detect_protoc(env): return env['PROTOC'] p = _detect_nanopb(env) - p1 = os.path.join(p, 'generator-bin', 'protoc') + p1 = os.path.join(p, 'generator-bin', 'protoc' + env['PROGSUFFIX']) if os.path.exists(p1): # Use protoc bundled with binary package return env['ESCAPE'](p1) |