Makefile macOS: fix missing space

doesn't seem to be causing problems so far
This commit is contained in:
Martin Pulec
2025-11-25 13:08:58 +01:00
parent 4c7e2955c3
commit 24bd7bf7cc

View File

@@ -626,7 +626,7 @@ $(GUI_BUNDLE): $(BUNDLE) $(GUI_BUNDLE_DEP)
if [ $(MACOS_LEGACY) = no ]; then \
for n in $(GUI_BUNDLE)/Contents/MacOS/*; do \
if expr $$n : '.*-real$$' >/dev/null || expr $$n : '.*\.sh$$' >/dev/null || \
[ !-f $$n ]; then continue; fi; \
[ ! -f $$n ]; then continue; fi; \
mv -f $$n $$n-real; dsymutil $$n-real; \
$(CP) -f $(srcdir)/data/scripts/macos-wrapper $$n; \
done; \