~jocave/checkbox/hybrid-amd-gpu-mods

« back to all changes in this revision

Viewing changes to checkbox-touch/build-me

  • Committer: Maciej Kisielewski
  • Date: 2016-05-17 07:58:47 UTC
  • mto: This revision was merged to the branch mainline in revision 4355.
  • Revision ID: maciej.kisielewski@canonical.com-20160517075847-je1p1xtgxnvhliuz
checkbox-touch: make build-me less verbose

By removing printing of temporary locations from which libs were pulled.

Signed-off-by: Maciej Kisielewski <maciej.kisielewski@canonical.com>

Show diffs side-by-side

added added

removed removed

Lines of Context:
271
271
                get_package_from_url_and_extract(uris[deb], tmp)
272
272
                bin_path = os.path.join(tmp, 'usr', 'bin')
273
273
                if os.path.exists(bin_path):
274
 
                    print('copying binaries from {}'.format(tmp))
275
274
                    executables = find_executables(bin_path)
276
275
                    provider_bin = os.path.join(
277
276
                            'providers', provider_dir, 'bin')
289
288
                            shutil.copymode(f, target)
290
289
                lib_path = os.path.join(tmp, 'usr', 'lib')
291
290
                if os.path.exists(lib_path):
292
 
                    print('copying libraries from {}'.format(tmp))
293
291
                    rsync_tree(lib_path, 'lib', preserve_symlinks=1)
294
292
 
295
293