Lines Matching refs:target
166 # remove the extra output of target "java_prebuilt"
313 def _copy_file(self, source, target):
314 if not os.path.exists(os.path.dirname(target)):
315 os.makedirs(os.path.dirname(target))
316 if not os.path.exists(target) or (
317 os.path.exists(target) and
318 (os.stat(target).st_mtime != os.stat(source).st_mtime)):
319 print('Trying to copy "%s" to "%s"' % (source, target))
320 subprocess.call(["rm", "-rf", target])
321 subprocess.call(["cp", "-rf", source, target])