From 299094a298b7ad643fc01919b0f7ec9a90d95435 Mon Sep 17 00:00:00 2001 From: "mattwillis%gmail.com" Date: Wed, 19 Jul 2006 22:07:02 +0000 Subject: [PATCH] bug 345149 - Handle Sunbirds that aren't named 'Sunbird'. r=rhelmer --- tools/tinderbox/build-seamonkey-util.pl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/tinderbox/build-seamonkey-util.pl b/tools/tinderbox/build-seamonkey-util.pl index 859f4116230..2e86e21686e 100644 --- a/tools/tinderbox/build-seamonkey-util.pl +++ b/tools/tinderbox/build-seamonkey-util.pl @@ -24,7 +24,7 @@ use Config; # for $Config{sig_name} and $Config{sig_num} use File::Find (); use File::Copy; -$::UtilsVersion = '$Revision: 1.329 $ '; +$::UtilsVersion = '$Revision: 1.330 $ '; package TinderUtils; @@ -1254,6 +1254,7 @@ sub get_profile_dir { # $ProductName must be set to the codename for the Mac, so check # $BinaryName and use the correct profile for browser. $profile_product_name = 'Firefox' if ($Settings::BinaryName =~ /^firefox/); + $profile_product_name = 'Sunbird' if ($Settings::BinaryName =~ /^sunbird/); my $profile_dir;