Title: [166289] trunk/Tools
Revision
166289
Author
commit-qu...@webkit.org
Date
2014-03-26 03:17:27 -0700 (Wed, 26 Mar 2014)

Log Message

run-launcher is Perl script so use elsif and not elif
https://bugs.webkit.org/show_bug.cgi?id=130771

Patch by Tomas Popela <tpop...@redhat.com> on 2014-03-26
Reviewed by Carlos Garcia Campos.

* Scripts/run-launcher:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (166288 => 166289)


--- trunk/Tools/ChangeLog	2014-03-26 10:16:46 UTC (rev 166288)
+++ trunk/Tools/ChangeLog	2014-03-26 10:17:27 UTC (rev 166289)
@@ -1,3 +1,12 @@
+2014-03-26  Tomas Popela  <tpop...@redhat.com>
+
+        run-launcher is Perl script so use elsif and not elif
+        https://bugs.webkit.org/show_bug.cgi?id=130771
+
+        Reviewed by Carlos Garcia Campos.
+
+        * Scripts/run-launcher:
+
 2014-03-26  Krzysztof Czech  <k.cz...@samsung.com>
 
         [ATK] Utilize new AtkValue interface coming in ATK 2.11.92

Modified: trunk/Tools/Scripts/run-launcher (166288 => 166289)


--- trunk/Tools/Scripts/run-launcher	2014-03-26 10:16:46 UTC (rev 166288)
+++ trunk/Tools/Scripts/run-launcher	2014-03-26 10:17:27 UTC (rev 166289)
@@ -48,9 +48,9 @@
 if (isGtk() || isEfl()) {
     if (isWK2()) {
         $launcherPath = catdir($productDir, "bin", "MiniBrowser");
-    } elif (isEfl()) {
+    } elsif (isEfl()) {
         $launcherPath = catdir($productDir, "bin", "EWebLauncher");
-    } elif (isGtk()) {
+    } elsif (isGtk()) {
         $launcherPath = catdir($productDir, "bin", "GtkLauncher");
     }
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to