Title: [115975] trunk/Tools
Revision
115975
Author
commit-qu...@webkit.org
Date
2012-05-03 08:55:12 -0700 (Thu, 03 May 2012)

Log Message

[GTK] join() is wrongly used in webkitdirs.pm since r115532
https://bugs.webkit.org/show_bug.cgi?id=85501

Patch by Philippe Normand <pnorm...@igalia.com> on 2012-05-03
Reviewed by Martin Robinson.

* Scripts/webkitdirs.pm:
(getJhbuildPath):
(buildAutotoolsProject):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (115974 => 115975)


--- trunk/Tools/ChangeLog	2012-05-03 15:40:35 UTC (rev 115974)
+++ trunk/Tools/ChangeLog	2012-05-03 15:55:12 UTC (rev 115975)
@@ -1,3 +1,14 @@
+2012-05-03  Philippe Normand  <pnorm...@igalia.com>
+
+        [GTK] join() is wrongly used in webkitdirs.pm since r115532
+        https://bugs.webkit.org/show_bug.cgi?id=85501
+
+        Reviewed by Martin Robinson.
+
+        * Scripts/webkitdirs.pm:
+        (getJhbuildPath):
+        (buildAutotoolsProject):
+
 2012-05-03  Zan Dobersek  <zandober...@gmail.com>
 
         [Gtk] ImageDiff crashes when it can't open a display

Modified: trunk/Tools/Scripts/webkitdirs.pm (115974 => 115975)


--- trunk/Tools/Scripts/webkitdirs.pm	2012-05-03 15:40:35 UTC (rev 115974)
+++ trunk/Tools/Scripts/webkitdirs.pm	2012-05-03 15:55:12 UTC (rev 115975)
@@ -1843,7 +1843,7 @@
 
 sub getJhbuildPath()
 {
-    return join(baseProductDir(), "Dependencies");
+    return join('/', baseProductDir(), "Dependencies");
 }
 
 sub jhbuildConfigurationChanged()
@@ -1988,7 +1988,7 @@
     # Save md5sum for jhbuild-related files.
     foreach my $file (qw(jhbuildrc jhbuild.modules)) {
         my $source = join('/', $sourceDir, "Tools", "gtk", $file);
-        my $destination = join(getJhbuildPath(), $file);
+        my $destination = join('/', getJhbuildPath(), $file);
         open(SUM, ">$destination" . ".md5sum");
         print SUM getMD5HashForFile($source);
         close(SUM);
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to