diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-08-10 18:17:21 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2006-08-10 18:17:21 +0000 |
commit | cb326e7dc01372029e13a8cfbaf6784eca9e6d1c (patch) | |
tree | 9e34adccfb7b569cccc3541b0640291f5b84b833 /packages | |
parent | 569dafa91ca58245390ed886032dda34749c8653 (diff) |
fixed up dmg/package target on 10.3
svn path=/trunk/; revision=5549
Diffstat (limited to 'packages')
-rw-r--r-- | packages/darwin_app/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/packages/darwin_app/Makefile b/packages/darwin_app/Makefile index 2046d036..c62624a1 100644 --- a/packages/darwin_app/Makefile +++ b/packages/darwin_app/Makefile @@ -247,16 +247,14 @@ dmg: # install -p background.png "/Volumes/$(DMG_NAME)/.imagefolder/" install -p DS_Store "/Volumes/$(DMG_NAME)/.DS_Store" chmod -R a-w "/Volumes/$(DMG_NAME)/$(PD_APP_NAME).app/Contents/Resources/doc" - hdiutil detach "/Volumes/$(DMG_NAME)" + hdiutil detach `mount | grep $(DMG_NAME) | cut -d ' ' -f 1` hdiutil convert -format UDZO -o "$(DMG_NAME).dmg" build.dmg rm -f build.dmg # install license hdiutil unflatten "$(DMG_NAME).dmg" /Developer/Tools/Rez /Developer/Headers/FlatCarbon/*.r SLA.r -a \ - -o "$(DMG_NAME)" + -o "$(DMG_NAME).dmg" hdiutil flatten "$(DMG_NAME).dmg" -# mystery file of 0 size... - rm -f "$(DMG_NAME)" |