Code

* packaging/macosx/osx-dmg.sh: Fix an incorrect reference to a shell
authormjwybrow <mjwybrow@users.sourceforge.net>
Thu, 17 Aug 2006 07:31:22 +0000 (07:31 +0000)
committermjwybrow <mjwybrow@users.sourceforge.net>
Thu, 17 Aug 2006 07:31:22 +0000 (07:31 +0000)
      variable

packaging/macosx/osx-dmg.sh

index 2c50ea3f59ba74538e41f0ae1c7c4396fec0cf01..b89a0fc91f38178a8f7644dce49da40363cd1bb5 100755 (executable)
@@ -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"