Home | History | Annotate | Download | only in distutils

Lines Matching refs:infiles

394     def make_file(self, infiles, outfile, func, args,
400 files listed in 'infiles'. If the command defined 'self.force',
407 # Allow 'infiles' to be a single string
408 if isinstance(infiles, str):
409 infiles = (infiles,)
410 elif not isinstance(infiles, (list, tuple)):
412 "'infiles' must be a string, or a list or tuple of strings"
416 (outfile, ', '.join(infiles))
421 if self.force or dep_util.newer_group(infiles, outfile):