From c9ca4eb2b3edffd87ce5ab5caccdd3b724da20f7 Mon Sep 17 00:00:00 2001 From: "bryner%brianryner.com" Date: Sun, 6 Jun 2004 19:40:20 +0000 Subject: [PATCH] Fix a couple more problems... use a better globbing syntax, remove quotes on the glob for unix since it doesn't seem to work, and make sure to assign to the right variable. --- tools/tinderbox/build-seamonkey-util.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/tinderbox/build-seamonkey-util.pl b/tools/tinderbox/build-seamonkey-util.pl index 68bfeb725d8e..be02f3bb6acd 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.262 $ '; +$::UtilsVersion = '$Revision: 1.263 $ '; package TinderUtils; @@ -1104,7 +1104,7 @@ sub get_profile_dir { } $profile_dir =~ s|\\|/|g; if ($Settings::VendorName) { - $profile_dir = <"$profile_dir*">; + ($profile_dir) = <"$profile_dir*">; } } elsif ($Settings::OS eq "BeOS") { $profile_dir = "/boot/home/config/settings/Mozilla/$Settings::MozProfileName"; @@ -1114,7 +1114,7 @@ sub get_profile_dir { # *nix if ($Settings::VendorName) { $profile_dir = "$build_dir/.".lc($Settings::VendorName)."/".lc($Settings::ProductName)."/$Settings::MozProfileName"; - $profile_dir = <"$profile_dir*">; + ($profile_dir) = <$profile_dir*>; } else { $profile_dir = "$build_dir/.".lc($Settings::ProductName)."/$Settings::MozProfileName"; @@ -1633,7 +1633,7 @@ sub run_all_tests { # Call get_profile_dir again, so it can find the extension-salted # profile directory under the profile root. - $profile_dir = get_profile_dir($build_dir); + $profiledir = get_profile_dir($build_dir); # # Find the prefs file, remember we have that random string now