Title: [134192] trunk/Tools
Revision
134192
Author
[email protected]
Date
2012-11-11 23:24:24 -0800 (Sun, 11 Nov 2012)

Log Message

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

Patch by Kangil Han <[email protected]> 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):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (134191 => 134192)


--- trunk/Tools/ChangeLog	2012-11-12 07:09:44 UTC (rev 134191)
+++ trunk/Tools/ChangeLog	2012-11-12 07:24:24 UTC (rev 134192)
@@ -1,3 +1,22 @@
+2012-11-11  Kangil Han  <[email protected]>
+
+        Change build congratulation message in EFL
+        https://bugs.webkit.org/show_bug.cgi?id=101833
+
+        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):
+
 2012-11-09  Ryosuke Niwa  <[email protected]>
 
         People with dichromacy can't tell crashes and passes on flakiness dashboard

Modified: trunk/Tools/Scripts/build-webkit (134191 => 134192)


--- trunk/Tools/Scripts/build-webkit	2012-11-12 07:09:44 UTC (rev 134191)
+++ trunk/Tools/Scripts/build-webkit	2012-11-12 07:24:24 UTC (rev 134192)
@@ -450,11 +450,11 @@
     my $buildTime = formatBuildTime($endTime - $startTime);
 
     print "\n";
-    print "===========================================================\n";
+    print "====================================================================\n";
     print " WebKit is now built ($buildTime). \n";
     if (!isChromium()) {
         print " To run $launcherName with this newly-built code, use the\n";
         print " \"$launcherPath\" script.\n";
     }
-    print "===========================================================\n";
+    print "====================================================================\n";
 }

Modified: trunk/Tools/Scripts/webkitdirs.pm (134191 => 134192)


--- trunk/Tools/Scripts/webkitdirs.pm	2012-11-12 07:09:44 UTC (rev 134191)
+++ trunk/Tools/Scripts/webkitdirs.pm	2012-11-12 07:24:24 UTC (rev 134192)
@@ -1514,7 +1514,7 @@
     } elsif (isAppleWebKit()) {
         return "Safari";
     } elsif (isEfl()) {
-        return "EWebLauncher";
+        return "EWebLauncher/MiniBrowser";
     } elsif (isWinCE()) {
         return "WinCELauncher";
     }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to