Title: [116894] releases/WebKitGTK/webkit-1.8/Tools
Revision
116894
Author
[email protected]
Date
2012-05-13 06:45:32 -0700 (Sun, 13 May 2012)

Log Message

Merge 115978 - Unreviewed, fix another call to join(), similar to the ones landed
in r115975.

* Scripts/webkitdirs.pm:
(jhbuildConfigurationChanged):

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-1.8/Tools/ChangeLog (116893 => 116894)


--- releases/WebKitGTK/webkit-1.8/Tools/ChangeLog	2012-05-13 13:45:18 UTC (rev 116893)
+++ releases/WebKitGTK/webkit-1.8/Tools/ChangeLog	2012-05-13 13:45:32 UTC (rev 116894)
@@ -1,5 +1,13 @@
 2012-05-03  Philippe Normand  <[email protected]>
 
+        Unreviewed, fix another call to join(), similar to the ones landed
+        in r115975.
+
+        * Scripts/webkitdirs.pm:
+        (jhbuildConfigurationChanged):
+
+2012-05-03  Philippe Normand  <[email protected]>
+
         [GTK] join() is wrongly used in webkitdirs.pm since r115532
         https://bugs.webkit.org/show_bug.cgi?id=85501
 

Modified: releases/WebKitGTK/webkit-1.8/Tools/Scripts/webkitdirs.pm (116893 => 116894)


--- releases/WebKitGTK/webkit-1.8/Tools/Scripts/webkitdirs.pm	2012-05-13 13:45:18 UTC (rev 116893)
+++ releases/WebKitGTK/webkit-1.8/Tools/Scripts/webkitdirs.pm	2012-05-13 13:45:32 UTC (rev 116894)
@@ -1829,7 +1829,7 @@
 sub jhbuildConfigurationChanged()
 {
     foreach my $file (qw(jhbuildrc.md5sum jhbuild.modules.md5sum)) {
-        my $path = join(getJhbuildPath(), $file);
+        my $path = join('/', getJhbuildPath(), $file);
         if (! -e $path) {
             return 1;
         }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to