~ubuntu-branches/debian/jessie/ldb/jessie

« back to all changes in this revision

Viewing changes to buildtools/wafsamba/samba_dist.py

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2014-07-05 23:32:23 UTC
  • mfrom: (1.3.16)
  • Revision ID: package-import@ubuntu.com-20140705233223-dss2i2wmfksxbivh
Tags: 1:1.1.18-1
* New upstream release.
 + Depend on tdb >= 1.3.2.
 + Fixes __attribute__((visibility)) check to not use nested functions.
   Closes: #749987
* Use canonical URL in Vcs-Git field.
* Specify branch in Vcs-Git field.
* Add 02_hurd: link against pthread on the Hurd, to fix ldb module
  loading. Closes: #749095

Show diffs side-by-side

added added

removed removed

Lines of Context:
127
127
            add_tarfile(tar, fname, abspath, srcsubdir)
128
128
 
129
129
 
130
 
    def list_directory_files(abspath):
 
130
    def list_directory_files(path):
 
131
        curdir = os.getcwd()
 
132
        os.chdir(srcdir)
131
133
        out_files = []
132
 
        for root, dirs, files in os.walk(abspath):
 
134
        for root, dirs, files in os.walk(path):
133
135
            for f in files:
134
136
                out_files.append(os.path.join(root, f))
 
137
        os.chdir(curdir)
135
138
        return out_files
136
139
 
137
140