Skip to content

Commit

Permalink
Makefile macOS: do not use wrapper for scripts
Browse files Browse the repository at this point in the history
currently only applicable on update.sh
  • Loading branch information
MartinPulec committed Jul 3, 2023
1 parent e75a8e3 commit a8b46e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ $(GUI_BUNDLE)/Contents/libs: $(BUNDLE)/Contents/libs $(GUI_BUNDLE)
command -v macdeployqt && macdeployqt $(GUI_BUNDLE) -verbose=2 -executable=$(GUI_BUNDLE)/Contents/MacOS/uv -executable=$(GUI_BUNDLE)/Contents/MacOS/hd-rum-transcode
if [ $(MACOS_LEGACY) = no ]; then \
for n in $(GUI_BUNDLE)/Contents/MacOS/*; do \
if expr $$n : '.*-real' >/dev/null; then continue; fi; \
if expr $$n : '.*-real$$' >/dev/null || expr $$n : '.*\.sh$$' >/dev/null; then continue; fi; \
mv -f $$n $$n-real; cp -f $(srcdir)/data/scripts/macos-wrapper $$n; \
done; \
fi
Expand Down

0 comments on commit a8b46e4

Please sign in to comment.