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

« back to all changes in this revision

Viewing changes to checkbox-touch/build-me

  • Committer: Sylvain Pineau
  • Author(s): Maciej Kisielewski, Sylvain Pineau, Paul Larson
  • Date: 2016-05-18 08:38:44 UTC
  • mfrom: (4343.1.9 launchpad/loc-svc-test-cc)
  • Revision ID: sylvain_pineau-20160518083844-0v5zigpa4vcwujdy
"automatic merge of lp:~kissiel/checkbox/loc-svc-test-cc/ by tarmac [r=pierre-equoy][bug=][author=kissiel]"

Show diffs side-by-side

added added

removed removed

Lines of Context:
285
285
                get_package_from_url_and_extract(uris[deb], tmp)
286
286
                bin_path = os.path.join(tmp, 'usr', 'bin')
287
287
                if os.path.exists(bin_path):
288
 
                    print('copying binaries from {}'.format(tmp))
289
288
                    executables = find_executables(bin_path)
290
289
                    provider_bin = os.path.join(
291
290
                            'providers', provider_dir, 'bin')
303
302
                            shutil.copymode(f, target)
304
303
                lib_path = os.path.join(tmp, 'usr', 'lib')
305
304
                if os.path.exists(lib_path):
306
 
                    print('copying libraries from {}'.format(tmp))
307
305
                    rsync_tree(lib_path, 'lib', preserve_symlinks=1)
308
306
 
309
307