From c629d359aad6a4a6dde371114c5c3851f95facb9 Mon Sep 17 00:00:00 2001 From: mjwybrow Date: Thu, 17 Aug 2006 07:31:22 +0000 Subject: [PATCH] * packaging/macosx/osx-dmg.sh: Fix an incorrect reference to a shell variable --- packaging/macosx/osx-dmg.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packaging/macosx/osx-dmg.sh b/packaging/macosx/osx-dmg.sh index 2c50ea3f5..b89a0fc91 100755 --- a/packaging/macosx/osx-dmg.sh +++ b/packaging/macosx/osx-dmg.sh @@ -71,7 +71,7 @@ fi # Create a new RW image from the temp directory. echo "Creating a new RW disk image..." rm -f "$RWNAME" -/usr/bin/hdiutil create -srcfolder "TMPDIR" -volname "$VOLNAME" -fs HFS+ -fsargs "-c c=64,a=16,e=16" -format UDRW "$RWNAME" +/usr/bin/hdiutil create -srcfolder "$TMPDIR" -volname "$VOLNAME" -fs HFS+ -fsargs "-c c=64,a=16,e=16" -format UDRW "$RWNAME" # We're finished with the temp directory, remove it. rm -rf "$TMPDIR" -- 2.30.2