summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-10-03 16:04:34 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-10-03 16:25:38 +0200
commitdd5a91b4372daf3c098348881d04496918ddf097 (patch)
tree0a3c2370fd13b056d6aa8f24662974024bb9ec22 /buildtools
parent8e5a9e7721a966ce1491f727d25ab3f0b8e8fa58 (diff)
downloadsamba-dd5a91b4372daf3c098348881d04496918ddf097.tar.gz
samba-dd5a91b4372daf3c098348881d04496918ddf097.tar.bz2
samba-dd5a91b4372daf3c098348881d04496918ddf097.zip
heimdal: Move SAMBA_ERRTABLE to heimdal_build.
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/wafsamba/samba_errtable.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/buildtools/wafsamba/samba_errtable.py b/buildtools/wafsamba/samba_errtable.py
deleted file mode 100644
index 78480221b6..0000000000
--- a/buildtools/wafsamba/samba_errtable.py
+++ /dev/null
@@ -1,27 +0,0 @@
-# waf build tool for building .et files with compile_et
-import Build
-from samba_utils import *
-
-def SAMBA_ERRTABLE(bld, name, source):
- '''Build a heimdal errtable from a .et file'''
-
- bname = source[0:-3]; # strip off the .et suffix
-
- if not SET_TARGET_TYPE(bld, name, 'ET'):
- return
-
- bld.SET_BUILD_GROUP('build_source')
-
- out_files = []
- out_files.append('%s.c' % bname)
- out_files.append('%s.h' % bname)
-
- t = bld(rule='${SRC[1].abspath(env)} . ${TGT[0].parent.abspath(env)} default/source4/heimdal_build/compile_et ${SRC[0].abspath(env)} ${TGT[0].bldpath(env)}',
- ext_out = '.c',
- before = 'cc',
- on_results = True,
- shell = True,
- source = [source, 'et_compile_wrapper.sh', 'compile_et'],
- target = out_files,
- name = name)
-Build.BuildContext.SAMBA_ERRTABLE = SAMBA_ERRTABLE