Lines Matching refs:cmd
39 def import_command(cmd): argument
50 mod = import_module('setuptools.command.' + cmd)
51 return getattr(mod, cmd)
53 mod = import_module('distutils.command.' + cmd)
54 return getattr(mod, cmd)
360 def get_flags(cmd): argument
361 if not cmd:
363 cmd = split_quoted(cmd)
364 if os.path.basename(cmd[0]) == 'xcrun':
365 del cmd[0]
367 if cmd[0] == '-sdk':
368 del cmd[0:2]
370 if cmd[0] == '-log':
371 del cmd[0]
374 return ' '.join(cmd[1:])
826 for cmd in cmdclass_list:
827 cmdclass.setdefault(cmd.__name__, cmd)