aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-12-29 21:36:06 +0200
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2013-12-29 21:36:06 +0200
commit125b49bf24883585d6826b8d72e14ccdfae41206 (patch)
treec59429f9a040401a315045b4b998bec40478082f /tests
parentda8210b947821b2002ce7dfb34eba213a2da73a3 (diff)
Fix spaces in paths on Windows also
Diffstat (limited to 'tests')
-rw-r--r--tests/site_scons/site_tools/nanopb.py2
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)