* Scripts/check-for-global-initializers:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@13544
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-03-28 Timothy Hatcher <timothy@apple.com>
+
+ Build fix. Turn off uninitialized warnings for the first block of code.
+
+ * Scripts/check-for-global-initializers:
+
2006-03-28 Darin Adler <darin@apple.com>
Reviewed by Geoff.
use warnings;
use strict;
+no warnings 'uninitialized'; # FIXME: turn off uninitialized warnings so the following code works
+
my $arch = $ENV{'CURRENT_ARCH'};
my $configuration = $ENV{'CONFIGURATION'};
my $target = $ENV{'TARGET_NAME'};
print "Could not open $list\n";
exit 1;
}
+
+use warnings; # turn all warnings back on
+
my @files = <LIST>;
chomp @files;
close LIST;