~ubuntu-branches/ubuntu/vivid/libclc/vivid

« back to all changes in this revision

Viewing changes to build/metabuild.py

  • Committer: Package Import Robot
  • Author(s): Michael Gilbert, Julian Wollrath, Michael Gilbert
  • Date: 2014-01-10 02:46:15 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140110024615-7htdxf30p179tsq5
Tags: 0~git20140101-1
[ Julian Wollrath ]
* New upstream snapshot.
* Use LLVM 3.4 and correct dependencies.
* Enable verbose build.
* Bump standards version to 3.9.5 (no changes needed).
* Update years in debian/copyright.

[ Michael Gilbert ]
* Eliminate duplicated files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
    self.all_targets.append(output)
62
62
    if r['generator']:
63
63
      self.distclean_files.append(output)
 
64
      if r['depfile']:
 
65
        self.distclean_files.append(depfile)
64
66
    else:
65
67
      self.clean_files.append(output)
 
68
      if r['depfile']:
 
69
        self.distclean_files.append(depfile)
 
70
 
66
71
 
67
72
  def _as_list(self, input):
68
73
    if isinstance(input, list):