Fix handling spaces in directory name
This commit is contained in:
@@ -61,12 +61,12 @@ def _detect_protoc(env):
|
|||||||
p1 = os.path.join(p, 'generator-bin', 'protoc')
|
p1 = os.path.join(p, 'generator-bin', 'protoc')
|
||||||
if os.path.exists(p1):
|
if os.path.exists(p1):
|
||||||
# Use protoc bundled with binary package
|
# Use protoc bundled with binary package
|
||||||
return p1
|
return env['ESCAPE'](p1)
|
||||||
|
|
||||||
p = env.WhereIs('protoc')
|
p = env.WhereIs('protoc')
|
||||||
if p:
|
if p:
|
||||||
# Use protoc from path
|
# Use protoc from path
|
||||||
return p
|
return env['ESCAPE'](p)
|
||||||
|
|
||||||
raise SCons.Errors.StopError(NanopbWarning,
|
raise SCons.Errors.StopError(NanopbWarning,
|
||||||
"Could not find the protoc compiler")
|
"Could not find the protoc compiler")
|
||||||
|
|||||||
@@ -34,10 +34,10 @@ LIBPROTOC=$(ldd `which protoc` | grep -o '/.*libprotoc[^ ]*')
|
|||||||
cp $LIBPROTOC $DEST/generator-bin/
|
cp $LIBPROTOC $DEST/generator-bin/
|
||||||
cat > $DEST/generator-bin/protoc << EOF
|
cat > $DEST/generator-bin/protoc << EOF
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
SCRIPTDIR=\$(dirname \$(readlink -f \$0))
|
SCRIPTDIR=\$(dirname "\$0")
|
||||||
export LD_LIBRARY_PATH=\$SCRIPTDIR
|
export LD_LIBRARY_PATH=\$SCRIPTDIR
|
||||||
export PATH=\$SCRIPTDIR:\$PATH
|
export PATH=\$SCRIPTDIR:\$PATH
|
||||||
exec \$SCRIPTDIR/protoc.bin "\$@"
|
exec "\$SCRIPTDIR/protoc.bin" "\$@"
|
||||||
EOF
|
EOF
|
||||||
chmod +x $DEST/generator-bin/protoc
|
chmod +x $DEST/generator-bin/protoc
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user