diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-30 13:59:25 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-30 13:59:25 -0400 |
commit | 54238bec96e2186ba23b565f92db24a67616d367 (patch) | |
tree | e31e3789d18951308028802113e3c5cd343a5a91 /Makefile | |
parent | a2c4a38853eda428919b413b5791a80e1c14db5e (diff) |
add -size to hdiutil call, it seems its own size calculation is buggy and so it has been failing
Also re-add removed file, seem to work now.
hdiutil has *horrible* error reporting. You get back a number from 1 to
1000, with no indication of the problem. --verbose doesn't help.
So this is all guesswork.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -154,14 +154,12 @@ osxapp: Build/Standalone Build/OSXMkLibs # OSX looks in man dir nearby the bin $(MAKE) install-mans DESTDIR="$(OSXAPP_BASE)/.." SHAREDIR="" PREFIX="" - # This file breaks hditul create - rm -f "$(OSXAPP_BASE)/../man/man1/git-annex-shell.1" ./Build/OSXMkLibs $(OSXAPP_BASE) cd $(OSXAPP_DEST) && find . -type f > Contents/MacOS/git-annex.MANIFEST cd $(OSXAPP_DEST) && find . -type l >> Contents/MacOS/git-annex.MANIFEST rm -f tmp/git-annex.dmg - hdiutil create -format UDBZ -srcfolder tmp/build-dmg \ + hdiutil create -format UDBZ -size 640m -srcfolder tmp/build-dmg \ -volname git-annex -o tmp/git-annex.dmg # Must be run on a system with TH supported, and the same |