Skip to content

Commit eb7b422

Browse files
committed
Xcode: Fixes for compiling from folder with spaces
1 parent 18184a0 commit eb7b422

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

deps/build.ninja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,14 +284,14 @@ rule gettext_build
284284
rm -f $$tmp $
285285
&& echo $
286286
'note: ⋯ $
287-
$top_srcdir/../macos/fixup-dylib-deps.sh $
287+
"$top_srcdir/../macos/fixup-dylib-deps.sh" $
288288
/lib @rpath $
289289
$destdir/lib $
290290
$destdir/bin/*' $
291291
&& $
292292
tmp=`mktemp` $
293293
&& $
294-
$top_srcdir/../macos/fixup-dylib-deps.sh $
294+
"$top_srcdir/../macos/fixup-dylib-deps.sh" $
295295
/lib @rpath $
296296
$destdir/lib $
297297
$destdir/bin/* $

deps/generate_build_ninja.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def gen_configure(n, prj, tarball=None, patches=[], srcdir=None, configure='conf
164164
# delete unwanted stuff
165165
'rm -f $destdir/bin/{autopoint,envsubst,gettext*,ngettext,recode-sr-latin}',
166166
# fix dylib references to work
167-
'$top_srcdir/../macos/fixup-dylib-deps.sh /lib @rpath $destdir/lib $destdir/bin/*',
167+
'"$top_srcdir/../macos/fixup-dylib-deps.sh" /lib @rpath $destdir/lib $destdir/bin/*',
168168
# strip executables
169169
'strip -S -u -r $destdir/bin/{msgfmt,msgmerge,msgunfmt,msgcat,xgettext}',
170170
'strip -S -x $destdir/lib/lib*.*.dylib',

0 commit comments

Comments
 (0)