Changeset 134192 in webkit
- Timestamp:
- Nov 11, 2012, 11:24:24 PM (13 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r134097 r134192 1 2012-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 1 20 2012-11-09 Ryosuke Niwa <rniwa@webkit.org> 2 21 -
trunk/Tools/Scripts/build-webkit
r133799 r134192 451 451 452 452 print "\n"; 453 print "=========================================================== \n";453 print "====================================================================\n"; 454 454 print " WebKit is now built ($buildTime). \n"; 455 455 if (!isChromium()) { … … 457 457 print " \"$launcherPath\" script.\n"; 458 458 } 459 print "=========================================================== \n";460 } 459 print "====================================================================\n"; 460 } -
trunk/Tools/Scripts/webkitdirs.pm
r134032 r134192 1515 1515 return "Safari"; 1516 1516 } elsif (isEfl()) { 1517 return "EWebLauncher ";1517 return "EWebLauncher/MiniBrowser"; 1518 1518 } elsif (isWinCE()) { 1519 1519 return "WinCELauncher";
Note:
See TracChangeset
for help on using the changeset viewer.