Reverted r98488, which caused the scripts’ status messages to be included in the generated
files.
* create_hash_table:
* create_jit_stubs:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@98491
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2011-10-26 Dan Bernstein <mitz@apple.com>
+
+ Build fix.
+
+ Reverted r98488, which caused the scripts’ status messages to be included in the generated
+ files.
+
+ * create_hash_table:
+ * create_jit_stubs:
+
2011-10-26 Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
Don't print regular output to STDERR when generating hashtables and JIT stubs
# Use -n as second argument to make it use the third argument as namespace parameter ie. -n KDOM
my $useNameSpace = $ARGV[1] if (defined($ARGV[0]) && $ARGV[0] eq "-n");
-print STDOUT "Creating hashtable for $file\n";
+print STDERR "Creating hashtable for $file\n";
open(IN, $file) or die "No such file $file";
my @keys = ();
my $rtype = "";
my $op = "";
-print STDOUT "Creating JIT stubs for $file \n";
+print STDERR "Creating JIT stubs for $file \n";
open(IN, $file) or die "No such file $file";
while ( $_ = <IN> ) {