diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-24 22:10:24 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:05 +1000 |
commit | eba9a54927dc363602389adac5c6edf09909fb65 (patch) | |
tree | 28c7dc832cdc04a5517a0030bf375c4b18a1ff9d /buildtools | |
parent | 742cb4547ae1798ca77cdb3d0ab6483ab5dac531 (diff) | |
download | samba-eba9a54927dc363602389adac5c6edf09909fb65.tar.gz samba-eba9a54927dc363602389adac5c6edf09909fb65.tar.bz2 samba-eba9a54927dc363602389adac5c6edf09909fb65.zip |
build: a few more build rules that should have on_results=True
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba_asn1.py | 2 | ||||
-rw-r--r-- | buildtools/wafsamba/wafsamba.py | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/buildtools/wafsamba/samba_asn1.py b/buildtools/wafsamba/samba_asn1.py index 63000ebd5b..22f664981f 100644 --- a/buildtools/wafsamba/samba_asn1.py +++ b/buildtools/wafsamba/samba_asn1.py @@ -65,6 +65,7 @@ def SAMBA_ASN1(bld, name, source, source = out_files[0], target = cfile, shell = True, + on_results=True, ext_out = '.c', ext_in = '.x', depends_on = name + '_ASN1', @@ -75,6 +76,7 @@ def SAMBA_ASN1(bld, name, source, source = out_files[1], ext_out = '.c', ext_in = '.x', + on_results=True, target = hfile, depends_on = name + '_ASN1', name = name + '_H') diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py index 7297224234..0e82ec7e35 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -436,6 +436,7 @@ def SAMBA_GENERATOR(bld, name, rule, source, target, source=source, target=target, shell=True, + on_results=True, before='cc', ext_out='.c', name=name) |