From 7c5a92a1043d5990d415014f081c8cd560fd3caa Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Thu, 5 Nov 2015 18:57:14 +0100 Subject: [PATCH] build:wafsamba: Include the print_commands.py tool from upstream The tool 'print_commands' is provided by default in Waf 1.8. Keeping the old code in Samba complicates the Waf upgrade. Signed-off-by: Thomas Nagy Reviewed-by: Uri Simchoni uri@samba.org Reviewed-by: Andrew Bartlett --- .../waf/wafadmin/3rdparty/print_commands.py | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 third_party/waf/wafadmin/3rdparty/print_commands.py diff --git a/third_party/waf/wafadmin/3rdparty/print_commands.py b/third_party/waf/wafadmin/3rdparty/print_commands.py new file mode 100644 index 00000000000..3b12aa31c11 --- /dev/null +++ b/third_party/waf/wafadmin/3rdparty/print_commands.py @@ -0,0 +1,25 @@ +#! /usr/bin/env python + +""" +In this case, print the commands being executed as strings +(the commands are usually lists, so this can be misleading) +""" + +import Build, Utils, Logs + +def exec_command(self, cmd, **kw): + txt = cmd + if isinstance(cmd, list): + txt = ' '.join(cmd) + Logs.debug('runner: %s' % txt) + if self.log: + self.log.write('%s\n' % cmd) + kw['log'] = self.log + try: + if not kw.get('cwd', None): + kw['cwd'] = self.cwd + except AttributeError: + self.cwd = kw['cwd'] = self.bldnode.abspath() + return Utils.exec_command(cmd, **kw) +Build.BuildContext.exec_command = exec_command + -- 2.34.1