From 865e478e25e6c9d69915061f6f2211298e730068 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 2 Apr 2010 12:26:27 +1100 Subject: s4-waf: create a blank __init__.py in samba/external needed for the external lib loader --- buildtools/wafsamba/samba_utils.py | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'buildtools/wafsamba/samba_utils.py') diff --git a/buildtools/wafsamba/samba_utils.py b/buildtools/wafsamba/samba_utils.py index 789720f0ea..03325e08db 100644 --- a/buildtools/wafsamba/samba_utils.py +++ b/buildtools/wafsamba/samba_utils.py @@ -407,3 +407,8 @@ def IS_NEWER(bld, file1, file2): return t1 > t2 Build.BuildContext.IS_NEWER = IS_NEWER + +def TOUCH_FILE(file): + '''touch a file''' + f = open(file, 'w') + f.close() -- cgit