osx: Use bzip2 compression for .dmg files.
bzip2 compression has been supported since OS X 10.4 and we don't distribute binaries for anything older, so there's no reason not to use this. It makes the generated .dmg files ~40KB smaller.
This commit is contained in:
parent
0d083b8565
commit
eaf851e095
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ ifndef GNUSTEP_MAKEFILES
|
|||
$(DMG) : tmp.dmg
|
||||
rm -f $@
|
||||
./dmgfix "$(realpath tmp.dmg)" "$(PACKAGE_STRING)" "$(PACKAGE_NAME).app"
|
||||
hdiutil convert -format UDZO -o $@ tmp.dmg
|
||||
hdiutil convert -format UDBZ -o $@ tmp.dmg
|
||||
rm -f tmp.dmg
|
||||
|
||||
tmp.dmg : $(STAGING_DIR)
|
||||
|
|
|
|||
Loading…
Reference in a new issue