Changeset 121886 in webkit


Ignore:
Timestamp:
Jul 5, 2012 12:24:21 AM (12 years ago)
Author:
sergio@webkit.org
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.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/built-product-archive

    r121867 r121886  
    148148
    149149        for dirname in neededDirectories:
    150             fromDir = os.path.join(configurationBuildDirectory, dirname, "*")
     150            fromDir = os.path.join(configurationBuildDirectory, dirname, ".")
    151151            toDir = os.path.join(thinDirectory, dirname)
    152152            os.makedirs(toDir)
  • trunk/Tools/ChangeLog

    r121881 r121886  
     12012-07-05  Sergio Villar Senin  <svillar@igalia.com>
     2
     3        Hidden dirs are not copied when creating the built product archive
     4        https://bugs.webkit.org/show_bug.cgi?id=90559
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        Hidden dirs are not copied inside the built product archive
     9        because the recursive copy command was ignoring them. We need those
     10        hidden directories for the GTK WebKit2 testing bot to work fine.
     11
     12        * BuildSlaveSupport/built-product-archive:
     13        (archiveBuiltProduct): replaced "*" by "." to include hidden
     14        dirs/files.
     15
    1162012-07-04  Yoshifumi Inoue  <yosin@chromium.org>
    217
Note: See TracChangeset for help on using the changeset viewer.