From: Alexander Bokovoy Date: Fri, 15 Jun 2018 13:32:33 +0000 (+0300) Subject: buildtools/wafsamba/samba_abi: always_run helper was deprecated in waf 2.0 X-Git-Tag: tdb-1.3.17~1805 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7aaa1e680e978c63136c0f7c6d230d9f60599a09;p=thirdparty%2Fsamba.git buildtools/wafsamba/samba_abi: always_run helper was deprecated in waf 2.0 Signed-off-by: Alexander Bokovoy Reviewed-by: Andrew Bartlett --- diff --git a/buildtools/wafsamba/samba_abi.py b/buildtools/wafsamba/samba_abi.py index be46a9e6286..8ddf209045f 100644 --- a/buildtools/wafsamba/samba_abi.py +++ b/buildtools/wafsamba/samba_abi.py @@ -125,7 +125,7 @@ t = Task.task_factory('abi_check', abi_check_task, color='BLUE', ext_in='.bin') t.quiet = True # allow "waf --abi-check" to force re-checking the ABI if '--abi-check' in sys.argv: - Task.always_run(t) + t.always_run = True @after('apply_link') @feature('abi_check')