#!/usr/bin/perl

$target = $ARGV[2];

############################

$app = 0;

if (!$app && -e "$target/Applications/DVD Studio Pro.app/Contents/Info.plist")
{
	$app = "$target/Applications/DVD Studio Pro.app";
}

if ($app)
{
}

############################

`/usr/bin/touch -c "$target/Library/QuickTime"`;
`/usr/bin/touch -c "$target/System/Library/QuickTime"`;

############################

exit 0;
