From d794c28b2dffdca103f29996ea61209d41f9667b Mon Sep 17 00:00:00 2001 From: Martin Pulec Date: Fri, 20 Sep 2024 14:53:29 +0200 Subject: [PATCH] Makefile mac: get rid of error (non-fatal) get rid of an error: `cp: uv-qt.app/Contents/Frameworks: Not a directory` --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 818b0c64b..0bde3d17e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -575,7 +575,7 @@ hd-rum-multi/hd-rum: # Makes dummy bundle (almost empty). May not be portable due to missing libs. $(BUNDLE): $(TARGET) $(REFLECTOR_TARGET) @MANPAGES@ hd-rum-multi/hd-rum rm -rf $(BUNDLE) - $(MKDIR_P) $(BUNDLE)/Contents/MacOS $(BUNDLE)/Contents/libs $(BUNDLE)/Contents/Frameworks + $(MKDIR_P) $(BUNDLE)/Contents/MacOS $(BUNDLE)/Contents/libs $(CP) $(REFLECTOR_TARGET) $(TARGET) $(BUNDLE)/Contents/MacOS/ $(CP) -r data/template/macOS-bundle/* $(BUNDLE)/ $(CP) hd-rum-multi/hd-rum $(BUNDLE)/Contents/MacOS/ @@ -586,7 +586,7 @@ $(BUNDLE): $(TARGET) $(REFLECTOR_TARGET) @MANPAGES@ hd-rum-multi/hd-rum | $(DYLIBBUNDLER) $(DYLIBBUNDLER_FLAGS) -of -cd -b \ -d $(BUNDLE)/Contents/libs/ -p @executable_path/../libs/ -x $$n; \ done - if [ -d Frameworks ]; then $(CP) -R Frameworks/* $(BUNDLE)/Contents/Frameworks/; fi + if [ -d Frameworks ]; then $(CP) -R Frameworks $(BUNDLE)/Contents/; fi if [ -n '@MANPAGES@' ]; then mkdir -p $(BUNDLE)/Contents/man/man1; \ $(CP) @MANPAGES@ $(BUNDLE)/Contents/man/man1/; fi #echo -n "UltraGrid" > $(BUNDLE)/Contents/PkgInfo