mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
3b7dfc51ac
Signed-off-by: Alexander Bokovoy <ab@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
25 lines
419 B
Python
25 lines
419 B
Python
#! /usr/bin/env python
|
|
# encoding: utf-8
|
|
# Thomas Nagy, 2015 (ita)
|
|
|
|
"""
|
|
Override the build commands to write empty files.
|
|
This is useful for profiling and evaluating the Python overhead.
|
|
|
|
To use::
|
|
|
|
def build(bld):
|
|
...
|
|
bld.load('nobuild')
|
|
|
|
"""
|
|
|
|
from waflib import Task
|
|
def build(bld):
|
|
def run(self):
|
|
for x in self.outputs:
|
|
x.write('')
|
|
for (name, cls) in Task.classes.items():
|
|
cls.run = run
|
|
|