From d1b4387442fb27d9d813a80b8e638c76f6316abc Mon Sep 17 00:00:00 2001 From: "sergio@webkit.org" Date: Thu, 5 Jul 2012 07:24:21 +0000 Subject: [PATCH] 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. git-svn-id: http://svn.webkit.org/repository/webkit/trunk@121886 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- Tools/BuildSlaveSupport/built-product-archive | 2 +- Tools/ChangeLog | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/Tools/BuildSlaveSupport/built-product-archive b/Tools/BuildSlaveSupport/built-product-archive index d5d7ed4..ae67e21 100644 --- a/Tools/BuildSlaveSupport/built-product-archive +++ b/Tools/BuildSlaveSupport/built-product-archive @@ -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): diff --git a/Tools/ChangeLog b/Tools/ChangeLog index 717fb0b..77a87d7 100644 --- a/Tools/ChangeLog +++ b/Tools/ChangeLog @@ -1,3 +1,18 @@ +2012-07-05 Sergio Villar Senin + + 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 Unreviewed Chromium gardening, Disable always failed python tests on Windows. -- 2.7.4