Hidden dirs are not copied when creating the built product archive
authorsergio@webkit.org <sergio@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 4 Jul 2012 16:43:03 +0000 (16:43 +0000)
committersergio@webkit.org <sergio@webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Wed, 4 Jul 2012 16:43:03 +0000 (16:43 +0000)
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.

git-svn-id: http://svn.webkit.org/repository/webkit/trunk@121862 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Tools/BuildSlaveSupport/built-product-archive
Tools/ChangeLog

index d5d7ed4..9f9e6a5 100644 (file)
@@ -147,7 +147,7 @@ def archiveBuiltProduct(configuration, platform):
             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):
index 7f8c08f..04a2a93 100644 (file)
@@ -1,3 +1,18 @@
+2012-07-04  Sergio Villar Senin  <svillar@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): removed the trailing "*" from the copy
+        command.
+
 2012-07-04  John Mellor  <johnme@chromium.org>
 
         Text Autosizing: Add compile flag and runtime setting