diff options
author | Stefan Metzmacher <metze@sernet.private> | 2010-03-24 10:54:31 +0100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:05 +1000 |
commit | 988bc0cdc2604b9d309af9895f3716e4bca59d47 (patch) | |
tree | bd6f764cdb1940b5fd46e254f6193013eebf6b5a /buildtools/wafsamba/samba_patterns.py | |
parent | 17f4485722d507f04e95c358d22570c499d14c62 (diff) | |
download | samba-988bc0cdc2604b9d309af9895f3716e4bca59d47.tar.gz |
build: make use on_results=True for some build rules
This makes sure we generate a checksum over the result.
In practice it means we no longer recompile when a proto header
is triggers a rebuild if it hasn't changed its md5sum.
metze
Diffstat (limited to 'buildtools/wafsamba/samba_patterns.py')
-rw-r--r-- | buildtools/wafsamba/samba_patterns.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/buildtools/wafsamba/samba_patterns.py b/buildtools/wafsamba/samba_patterns.py index fa1b70de7a7..ccd82159a97 100644 --- a/buildtools/wafsamba/samba_patterns.py +++ b/buildtools/wafsamba/samba_patterns.py @@ -11,6 +11,7 @@ def SAMBA_MKVERSION(bld, target): source= [ "script/mkversion.sh", 'VERSION' ], target=target, shell=True, + on_results=True, before="cc") # force this rule to be constructed now t.post() |