From 14fc71fc27d80d76d4e1cdba0f8d2a4eace2dd0c Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 25 Mar 2010 12:35:18 +1100 Subject: build: we need to replace md5 in Task as well --- buildtools/wafsamba/samba_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'buildtools/wafsamba/samba_utils.py') diff --git a/buildtools/wafsamba/samba_utils.py b/buildtools/wafsamba/samba_utils.py index 382a1b1e84..b0a6b1c2a7 100644 --- a/buildtools/wafsamba/samba_utils.py +++ b/buildtools/wafsamba/samba_utils.py @@ -1,7 +1,7 @@ # a waf tool to add autoconf-like macros to the configure section # and for SAMBA_ macros for building libraries, binaries etc -import Build, os, sys, Options, Utils +import Build, os, sys, Options, Utils, Task from TaskGen import feature, before from Configure import conf from Logs import debug @@ -370,4 +370,5 @@ except: f.close() return m.digest() Utils.md5 = replace_md5 + Task.md5 = replace_md5 Utils.h_file = replace_h_file -- cgit