diff options
-rwxr-xr-x | tools/make_mac_package.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/make_mac_package.sh b/tools/make_mac_package.sh index 9e78910..21cd170 100755 --- a/tools/make_mac_package.sh +++ b/tools/make_mac_package.sh @@ -37,10 +37,10 @@ LIBPROTOBUF=$(otool -L `which protoc` | grep -o '/.*libprotobuf[^ ]*') cp $LIBPROTOC $LIBPROTOBUF $DEST/generator-bin/ cat > $DEST/generator-bin/protoc << EOF #!/bin/bash -SCRIPTDIR=\$(cd \$(dirname \$0); pwd) +SCRIPTDIR=\$(dirname "\$0") export DYLD_LIBRARY_PATH=\$SCRIPTDIR export PATH=\$SCRIPTDIR:\$PATH -exec \$SCRIPTDIR/protoc.bin "\$@" +exec "\$SCRIPTDIR/protoc.bin" "\$@" EOF chmod +x $DEST/generator-bin/protoc |