Lines Matching refs:workdir
33 workdir = os.path.join(tempdir, 'workdir')
34 d.setVar('WORKDIR', workdir)
35 if not d.getVar('S').startswith(workdir):
36 # Usually a shared workdir recipe (kernel, gcc)
75 workdir = d.getVar('WORKDIR')
108 shutil.copy2(cfg, workdir)
113 os.path.exists(os.path.join(workdir, fname)) and
114 (srcabspath == workdir or not
115 os.path.join(workdir, fname).startswith(srcabspath +
119 _move_file(os.path.join(workdir, fname),
126 if srcsubdir == workdir:
129 src_files = [fname for fname in _ls_tree(workdir) if
134 _move_file(os.path.join(workdir, path),
136 elif os.path.dirname(srcsubdir) != workdir:
138 srcsubdir = os.path.join(workdir, os.path.relpath(srcsubdir, workdir).split(os.sep)[0])