blob: c7872b6ff29b6addf48cec24ded801ed7ce62e3c (
plain)
1
2
3
4
5
6
7
8
|
from distutils.command.build import build as old_build
class build(old_build):
sub_commands = [('config_fc', lambda *args: 1),
('build_src', old_build.has_ext_modules),
] + old_build.sub_commands
|