From 37388fda3b328d35310da7f7cd0558de1c683de5 Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Mon, 3 Oct 2016 14:08:42 +0200 Subject: [PATCH] Enable waf --zones=argfile to display @argfile contents --- waflib/Task.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/waflib/Task.py b/waflib/Task.py index 0327335a..93f7b59d 100644 --- a/waflib/Task.py +++ b/waflib/Task.py @@ -244,6 +244,8 @@ class TaskBase(evil): (fd, tmp) = tempfile.mkstemp() os.write(fd, '\r\n'.join(args).encode()) os.close(fd) + if Logs.verbose: + Logs.debug('argfile: @%r -> %r', tmp, args) return self.generator.bld.exec_command(cmd + ['@' + tmp], **kw) finally: try: