Title: [139438] trunk/Tools
Revision
139438
Author
[email protected]
Date
2013-01-11 06:40:51 -0800 (Fri, 11 Jan 2013)

Log Message

Another unreviewed fix after r139431.

In a way, this is also a generic bug fix, since previously isEfl()
would fail when called from run-efl-tests and we thus did not use
jhbuild to run our tests. This now resulted in us calling
"jhbuild-wrapper run" without specifying a platform.

* Scripts/run-efl-tests: Pass "--efl" to ARGV manually for isEfl()
to work.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (139437 => 139438)


--- trunk/Tools/ChangeLog	2013-01-11 14:37:29 UTC (rev 139437)
+++ trunk/Tools/ChangeLog	2013-01-11 14:40:51 UTC (rev 139438)
@@ -1,3 +1,15 @@
+2013-01-11  Raphael Kubo da Costa  <[email protected]>
+
+        Another unreviewed fix after r139431.
+
+        In a way, this is also a generic bug fix, since previously isEfl()
+        would fail when called from run-efl-tests and we thus did not use
+        jhbuild to run our tests. This now resulted in us calling
+        "jhbuild-wrapper run" without specifying a platform.
+
+        * Scripts/run-efl-tests: Pass "--efl" to ARGV manually for isEfl()
+        to work.
+
 2013-01-11  Allan Sandfeld Jensen  <[email protected]>
 
         [Qt][WK1] Web Audio support

Modified: trunk/Tools/Scripts/run-efl-tests (139437 => 139438)


--- trunk/Tools/Scripts/run-efl-tests	2013-01-11 14:37:29 UTC (rev 139437)
+++ trunk/Tools/Scripts/run-efl-tests	2013-01-11 14:40:51 UTC (rev 139438)
@@ -48,6 +48,9 @@
 } else {
     setConfiguration();
 
+    # Manually add this for jhbuildWrapperPrefixIfNeeded().
+    push(@ARGV, "--efl");
+
     my $returnCode = exitStatus(generateBuildSystemFromCMakeProject("Efl", undef, cmakeBasedPortArguments()));
     exit($returnCode) if $returnCode;
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to