1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

build: a few more build rules that should have on_results=True

This commit is contained in:
Andrew Tridgell 2010-03-24 22:10:24 +11:00
parent 742cb4547a
commit eba9a54927
2 changed files with 3 additions and 0 deletions

View File

@ -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')

View File

@ -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)