Skip to content

Commit

Permalink
Revert "Makefile: added deps on bundle dir"
Browse files Browse the repository at this point in the history
This still causes the bundle rebuild. Under normal circumstances it
won't matter but as we sign the directory after creating the bundle
and before creating dmg, it actually hurts, becasue to the DMG goes the
freshly-created (unsigned) bundle.

This reverts commit 7294347.
  • Loading branch information
MartinPulec committed Nov 2, 2023
1 parent bc50883 commit 0f9dbdf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,9 @@ $(GUI_BUNDLE): $(BUNDLE) $(GUI_BUNDLE_DEP)
bundle: $(BUNDLE)
gui-bundle: $(GUI_BUNDLE)

osx-gui-dmg: $(GUI_BUNDLE)
## @todo Add correct dependencies (using $(GUI_BUNDLE)/Contents/libs causes
## uv-qt rebuild which breaks fixed links by macdeployqt)
osx-gui-dmg:
[ ! -f UltraGrid.dmg ] || rm UltraGrid.dmg
hdiutil create -fs HFS+ -volname ULTRAGRID -srcdir $(GUI_BUNDLE) -format UDZO -imagekey zlib-level=9 -o UltraGrid.dmg

Expand Down

0 comments on commit 0f9dbdf

Please sign in to comment.