From 473dad80b448b10bf7aea9e62c30017b35eed4fc Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Mon, 4 Jan 2010 15:34:00 +0000 Subject: [PATCH] Remove existing DMG if one exists, so that hdiutil will not fail. Subversion-branch: /launcher Subversion-revision: 1778 --- GNUmakefile | 1 + 1 file changed, 1 insertion(+) diff --git a/GNUmakefile b/GNUmakefile index a5c05af..0b9281e 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -7,6 +7,7 @@ DMG=$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).dmg # DMG file containing package: $(DMG) : $(STAGING_DIR) + rm -f $@ hdiutil create -volname "$(PACKAGE_STRING)" -srcdir $(STAGING_DIR) $@ clean : launcher_clean