Title: [121862] trunk/Tools
Revision
121862
Author
[email protected]
Date
2012-07-04 09:43:03 -0700 (Wed, 04 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): removed the trailing "*" from the copy
command.

Modified Paths

Diff

Modified: trunk/Tools/BuildSlaveSupport/built-product-archive (121861 => 121862)


--- trunk/Tools/BuildSlaveSupport/built-product-archive	2012-07-04 16:16:01 UTC (rev 121861)
+++ trunk/Tools/BuildSlaveSupport/built-product-archive	2012-07-04 16:43:03 UTC (rev 121862)
@@ -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 (121861 => 121862)


--- trunk/Tools/ChangeLog	2012-07-04 16:16:01 UTC (rev 121861)
+++ trunk/Tools/ChangeLog	2012-07-04 16:43:03 UTC (rev 121862)
@@ -1,3 +1,18 @@
+2012-07-04  Sergio Villar Senin  <[email protected]>
+
+        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): removed the trailing "*" from the copy
+        command.
+
 2012-07-04  John Mellor  <[email protected]>
 
         Text Autosizing: Add compile flag and runtime setting
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to