summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_utils.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-04-05 11:25:20 +1000
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:27:26 +1000
commit64594f296ca84c487e5cd7ec5e76153cb3b3ef4a (patch)
treee6d37cfc7afddf091a8b99f1a8e3bd2b0329bf2f /buildtools/wafsamba/samba_utils.py
parentcd712dff316b5d1d017c0132ef37e948b17e0608 (diff)
downloadsamba-64594f296ca84c487e5cd7ec5e76153cb3b3ef4a.tar.gz
samba-64594f296ca84c487e5cd7ec5e76153cb3b3ef4a.tar.bz2
samba-64594f296ca84c487e5cd7ec5e76153cb3b3ef4a.zip
s4-waf: replace TOUCH_FILE() with normal install rules
this allows it to work with 'waf uninstall'
Diffstat (limited to 'buildtools/wafsamba/samba_utils.py')
-rw-r--r--buildtools/wafsamba/samba_utils.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/buildtools/wafsamba/samba_utils.py b/buildtools/wafsamba/samba_utils.py
index fc23aa4f64..8a8a7e3975 100644
--- a/buildtools/wafsamba/samba_utils.py
+++ b/buildtools/wafsamba/samba_utils.py
@@ -409,19 +409,6 @@ def IS_NEWER(bld, file1, file2):
Build.BuildContext.IS_NEWER = IS_NEWER
-def TOUCH_FILE(file, install_dir=False):
- '''touch a file'''
- if install_dir:
- if file[0] == '/':
- file = Options.options.destdir + file
- else:
- file = Options.options.destdir + '/' + file
- mkdir_p(os.path.dirname(file))
- f = open(file, 'w')
- f.close()
-
-
-
@conf
def RECURSE(ctx, directory):
'''recurse into a directory, relative to the curdir or top level'''