summaryrefslogtreecommitdiff
path: root/source4/heimdal_build
diff options
context:
space:
mode:
authorThomas Nagy <tnagy2pow10@gmail.com>2015-03-07 15:31:18 +0100
committerAndrew Bartlett <abartlet@samba.org>2015-03-16 03:00:07 +0100
commit5771276be91ec3aad6a7d8cf396ee4721a171feb (patch)
treead7c6be64cd912a8bf3ffaa0c1f3e5bc937e05e4 /source4/heimdal_build
parent2ab6c10f843c2bd703528bf5b753d8a74e97cf3a (diff)
downloadsamba-5771276be91ec3aad6a7d8cf396ee4721a171feb.tar.gz
Transition to waf 1.8: replaced on_results by update_outputs
Reviewed-By: Jelmer Vernooij <jelmer@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/heimdal_build')
-rw-r--r--source4/heimdal_build/wscript_build14
1 files changed, 7 insertions, 7 deletions
diff --git a/source4/heimdal_build/wscript_build b/source4/heimdal_build/wscript_build
index 0eb1e38d386..99345ec1de6 100644
--- a/source4/heimdal_build/wscript_build
+++ b/source4/heimdal_build/wscript_build
@@ -70,7 +70,7 @@ def HEIMDAL_ASN1(name, source,
t = bld(rule=asn1_rule,
ext_out = '.x',
before = 'cc',
- on_results = True,
+ update_outputs = True,
shell = True,
source = source,
target = out_files,
@@ -92,7 +92,7 @@ def HEIMDAL_ASN1(name, source,
source = out_files[0],
target = cfile,
shell = True,
- on_results=True,
+ update_outputs=True,
ext_out = '.c',
ext_in = '.x',
depends_on = name + '_ASN1',
@@ -103,7 +103,7 @@ def HEIMDAL_ASN1(name, source,
source = out_files[1],
ext_out = '.c',
ext_in = '.x',
- on_results=True,
+ update_outputs=True,
target = hfile,
depends_on = name + '_ASN1',
name = name + '_H')
@@ -113,7 +113,7 @@ def HEIMDAL_ASN1(name, source,
source = out_files[2],
ext_out = '.c',
ext_in = '.x',
- on_results=True,
+ update_outputs=True,
target = hpriv,
depends_on = name + '_ASN1',
name = name + '_PRIV_H')
@@ -158,7 +158,7 @@ def HEIMDAL_ERRTABLE(name, source):
t = bld(rule='"${SRC[1].abspath(env)}" "${TGT[0].parent.abspath(env)}" "${COMPILE_ET}" "${SRC[0].abspath(env)}" ${TGT[0].bldpath(env)}',
ext_out = '.c',
before = 'cc',
- on_results = True,
+ update_outputs = True,
shell = True,
source = sources,
target = out_files,
@@ -176,7 +176,7 @@ def HEIMDAL_AUTOPROTO(header, source, options=None, group='prototypes'):
t = bld(rule='${PERL} "${HEIMDAL}/cf/make-proto.pl" ${OPTIONS} "${TGT[0].abspath(env)}" ${SRC}',
source=source,
target=header,
- on_results=True,
+ update_outputs=True,
ext_out='.c',
before='cc')
t.env.HEIMDAL = os.path.join(bld.srcnode.abspath(), 'source4/heimdal')
@@ -201,7 +201,7 @@ def HEIMDAL_GENERATOR(name, rule, source='', target='',
source=source,
target=target,
shell=isinstance(rule, str),
- on_results=True,
+ update_outputs=True,
before='cc',
ext_out='.c',
vars=[rule],