diff options
-rwxr-xr-x | scripts/ice-builder-xcode-wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/ice-builder-xcode-wrapper b/scripts/ice-builder-xcode-wrapper index 41e902f0ac1..a7c7b9a5c0e 100755 --- a/scripts/ice-builder-xcode-wrapper +++ b/scripts/ice-builder-xcode-wrapper @@ -14,10 +14,10 @@ if [[ "$ICE_BIN_DIST" =~ ^(all|cpp)$ ]]; then if [ -n "$ICE_HOME" ]; then - FLAGS="--ice-home $ICE_HOME" + FLAGS="--ice-home \"$ICE_HOME\"" fi else - FLAGS="--ice-home $(git rev-parse --show-toplevel)" + FLAGS="--ice-home ../../../.." fi /usr/local/bin/icebuilder $FLAGS "$@" |