Title: [105474] trunk/Tools
Revision
105474
Author
[email protected]
Date
2012-01-19 19:02:46 -0800 (Thu, 19 Jan 2012)

Log Message

Unreviewed build fix. Wrong variable being used as the cwd for git
remote update command.

* gtk/run-with-jhbuild:
(update_jhbuild):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (105473 => 105474)


--- trunk/Tools/ChangeLog	2012-01-20 02:51:04 UTC (rev 105473)
+++ trunk/Tools/ChangeLog	2012-01-20 03:02:46 UTC (rev 105474)
@@ -1,5 +1,13 @@
 2012-01-19  Gustavo Noronha Silva  <[email protected]>
 
+        Unreviewed build fix. Wrong variable being used as the cwd for git
+        remote update command.
+
+        * gtk/run-with-jhbuild:
+        (update_jhbuild):
+
+2012-01-19  Gustavo Noronha Silva  <[email protected]>
+
         [GTK] ensure the jhbuild used by webkit is as up-to-date as needed
         https://bugs.webkit.org/show_bug.cgi?id=76585
 

Modified: trunk/Tools/gtk/run-with-jhbuild (105473 => 105474)


--- trunk/Tools/gtk/run-with-jhbuild	2012-01-20 02:51:04 UTC (rev 105473)
+++ trunk/Tools/gtk/run-with-jhbuild	2012-01-20 03:02:46 UTC (rev 105474)
@@ -49,7 +49,7 @@
 
 
 def update_jhbuild():
-    process = subprocess.Popen(['git', 'remote', 'update', 'origin'], cwd=source_path)
+    process = subprocess.Popen(['git', 'remote', 'update', 'origin'], cwd=jhbuild_source_path)
     process.wait()
     if process.returncode != 0:
         raise Exception('jhbuild remote update origin failed with return code: %i' % process.returncode)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to