Skip to content

Commit

Permalink
Makefile mac: get rid of error (non-fatal)
Browse files Browse the repository at this point in the history
get rid of an error:
`cp: uv-qt.app/Contents/Frameworks: Not a directory`
  • Loading branch information
MartinPulec committed Sep 20, 2024
1 parent e1b3795 commit d794c28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand All @@ -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
Expand Down

0 comments on commit d794c28

Please sign in to comment.