Bustage fix from bug 397621 - correctly set up the product name and profile location on mac for the new Shredder banding. r=reed.

This commit is contained in:
bugzilla%standard8.plus.com 2008-07-03 09:08:56 +00:00
Родитель 692399a811
Коммит a88d1f17dc
2 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -55,8 +55,8 @@ $BuildAdministrator = 'build@mozilla.org';
# Tests
$CleanProfile = 1;
#$ResetHomeDirForTests = 1;
$ProductName = "Thunderbird";
$VendorName = 'Mozilla';
$ProductName = "Shredder";
#$VendorName = 'Mozilla';
$RunMozillaTests = 1; # Allow turning off of all tests if needed.
$RegxpcomTest = 1;

Просмотреть файл

@ -24,7 +24,7 @@ use Config; # for $Config{sig_name} and $Config{sig_num}
use File::Find ();
use File::Copy;
$::UtilsVersion = '$Revision: 1.390 $ ';
$::UtilsVersion = '$Revision: 1.391 $ ';
package TinderUtils;
@ -1364,6 +1364,7 @@ sub get_profile_dir {
# $BinaryName and use the correct profile for browser.
$profile_product_name = 'Firefox' if ($Settings::BinaryName =~ /^firefox/);
$profile_product_name = 'Sunbird' if ($Settings::BinaryName =~ /^sunbird/);
$profile_product_name = 'Thunderbird' if ($Settings::BinaryName =~ /^thunderbird/);
my $profile_dir;