Changeset 134192 in webkit


Ignore:
Timestamp:
Nov 11, 2012, 11:24:24 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

Change build congratulation message in EFL
https://bugs.webkit.org/show_bug.cgi?id=101833

Patch by Kangil Han <kangil.han@samsung.com> on 2012-11-11
Reviewed by Gyuyoung Kim.

EFL port is currently supporting both WK1 and WK2.
But, build congratulation message still shows WK1(EWebLauncher) only.
Therefore, this patch adopts WK2 reference execution(MiniBrowser) in its message.

From 'To run EWebLauncher with this newly-built code, use the'
to 'To run EWebLauncher/MiniBrowser with this newly-built code, use the'.

  • Scripts/build-webkit:

(writeCongrats):

  • Scripts/webkitdirs.pm:

(launcherName):

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r134097 r134192  
     12012-11-11  Kangil Han  <kangil.han@samsung.com>
     2
     3        Change build congratulation message in EFL
     4        https://bugs.webkit.org/show_bug.cgi?id=101833
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        EFL port is currently supporting both WK1 and WK2.
     9        But, build congratulation message still shows WK1(EWebLauncher) only.
     10        Therefore, this patch adopts WK2 reference execution(MiniBrowser) in its message.
     11
     12        From 'To run EWebLauncher with this newly-built code, use the'
     13        to 'To run EWebLauncher/MiniBrowser with this newly-built code, use the'.
     14
     15        * Scripts/build-webkit:
     16        (writeCongrats):
     17        * Scripts/webkitdirs.pm:
     18        (launcherName):
     19
    1202012-11-09  Ryosuke Niwa  <rniwa@webkit.org>
    221
  • trunk/Tools/Scripts/build-webkit

    r133799 r134192  
    451451
    452452    print "\n";
    453     print "===========================================================\n";
     453    print "====================================================================\n";
    454454    print " WebKit is now built ($buildTime). \n";
    455455    if (!isChromium()) {
     
    457457        print " \"$launcherPath\" script.\n";
    458458    }
    459     print "===========================================================\n";
    460 }
     459    print "====================================================================\n";
     460}
  • trunk/Tools/Scripts/webkitdirs.pm

    r134032 r134192  
    15151515        return "Safari";
    15161516    } elsif (isEfl()) {
    1517         return "EWebLauncher";
     1517        return "EWebLauncher/MiniBrowser";
    15181518    } elsif (isWinCE()) {
    15191519        return "WinCELauncher";
Note: See TracChangeset for help on using the changeset viewer.