Changeset 80443 in webkit


Ignore:
Timestamp:
Mar 6, 2011 5:11:38 PM (13 years ago)
Author:
dbates@webkit.org
Message:

2011-03-06 Daniel Bates <dbates@rim.com>

Reviewed by Eric Seidel and David Kilzer.

Fix misspelled word in build-webkit's checkForJavaSDK() and sort forward declarations
https://bugs.webkit.org/show_bug.cgi?id=55503

Fix misspelled word "Dowloads" [sic] in the message printed to standard output
in checkForJavaSDK().

Also, remove extraneous space in function prototype for unlinkZeroFiles.

  • Scripts/build-webkit:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r80427 r80443  
     12011-03-06  Daniel Bates  <dbates@rim.com>
     2
     3        Reviewed by Eric Seidel and David Kilzer.
     4
     5        Fix misspelled word in build-webkit's checkForJavaSDK() and sort forward declarations
     6        https://bugs.webkit.org/show_bug.cgi?id=55503
     7
     8        Fix misspelled word "Dowloads" [sic] in the message printed to standard output
     9        in checkForJavaSDK().
     10
     11        Also, remove extraneous space in function prototype for unlinkZeroFiles.
     12
     13        * Scripts/build-webkit:
     14
    1152011-03-05  Brian Weinstein  <bweinstein@apple.com>
    216
  • trunk/Tools/Scripts/build-webkit

    r80166 r80443  
    4242use POSIX;
    4343
     44sub checkForJavaSDK();
    4445sub formatBuildTime($);
    4546sub writeCongrats();
    46 sub checkForJavaSDK();
    4747
    4848my $originalWorkingDirectory = getcwd();
     
    391391File::Find::find(\&unlinkZeroFiles, $productDir) if (isQt() && !isSymbian() && -e $productDir);
    392392
    393 sub unlinkZeroFiles ()
     393sub unlinkZeroFiles()
    394394{
    395395    my $file = $File::Find::name;
     
    622622    print "\nCan't find required $jniHeader, build will fail.\n\n";
    623623    print "After installing \"Java for Mac OS X 10.6 Update 3\", the Java Developer Package is required to build WebKit.\n";
    624     print "Please install the package from http://connect.apple.com (found under Dowloads > Java).\n\n";
     624    print "Please install the package from http://connect.apple.com (found under Downloads > Java).\n\n";
    625625    print "For more information, see:\n";
    626626    print "https://lists.webkit.org/pipermail/webkit-dev/2010-October/014867.html\n";
Note: See TracChangeset for help on using the changeset viewer.