Title: [121886] trunk/Tools
Revision
121886
Author
ser...@webkit.org
Date
2012-07-05 00:24:21 -0700 (Thu, 05 Jul 2012)

Log Message

Hidden dirs are not copied when creating the built product archive
https://bugs.webkit.org/show_bug.cgi?id=90559

Reviewed by Carlos Garcia Campos.

Hidden dirs are not copied inside the built product archive
because the recursive copy command was ignoring them. We need those
hidden directories for the GTK WebKit2 testing bot to work fine.

* BuildSlaveSupport/built-product-archive:
(archiveBuiltProduct): replaced "*" by "." to include hidden
dirs/files.

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/built-product-archive (121885 => 121886)


--- trunk/Tools/BuildSlaveSupport/built-product-archive	2012-07-05 07:04:16 UTC (rev 121885)
+++ trunk/Tools/BuildSlaveSupport/built-product-archive	2012-07-05 07:24:21 UTC (rev 121886)
@@ -147,7 +147,7 @@
             neededDirectories = ["Programs", ".libs", "Libraries"]
 
         for dirname in neededDirectories:
-            fromDir = os.path.join(configurationBuildDirectory, dirname, "*")
+            fromDir = os.path.join(configurationBuildDirectory, dirname, ".")
             toDir = os.path.join(thinDirectory, dirname)
             os.makedirs(toDir)
             if subprocess.call('cp -R %s %s' % (fromDir, toDir), shell=True):

Modified: trunk/Tools/ChangeLog (121885 => 121886)


--- trunk/Tools/ChangeLog	2012-07-05 07:04:16 UTC (rev 121885)
+++ trunk/Tools/ChangeLog	2012-07-05 07:24:21 UTC (rev 121886)
@@ -1,3 +1,18 @@
+2012-07-05  Sergio Villar Senin  <svil...@igalia.com>
+
+        Hidden dirs are not copied when creating the built product archive
+        https://bugs.webkit.org/show_bug.cgi?id=90559
+
+        Reviewed by Carlos Garcia Campos.
+
+        Hidden dirs are not copied inside the built product archive
+        because the recursive copy command was ignoring them. We need those
+        hidden directories for the GTK WebKit2 testing bot to work fine.
+
+        * BuildSlaveSupport/built-product-archive:
+        (archiveBuiltProduct): replaced "*" by "." to include hidden
+        dirs/files.
+
 2012-07-04  Yoshifumi Inoue  <yo...@chromium.org>
 
         Unreviewed Chromium gardening, Disable always failed python tests on Windows.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to