diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-11-03 08:18:05 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-11-03 10:53:12 +1100 |
commit | 9cac0bfde658ce0639a9aa65f412ae8a1eae8bdf (patch) | |
tree | 22c151c47a54e1325382b712a1c02cccbfec5e9d /buildtools/wafsamba | |
parent | b3fb311173ff6716a19a9e828f7167872bf76638 (diff) | |
download | samba-9cac0bfde658ce0639a9aa65f412ae8a1eae8bdf.tar.gz samba-9cac0bfde658ce0639a9aa65f412ae8a1eae8bdf.tar.bz2 samba-9cac0bfde658ce0639a9aa65f412ae8a1eae8bdf.zip |
waf: fixed wildcard build
this fixes minimal includes for subsystems that use autoproto
Diffstat (limited to 'buildtools/wafsamba')
-rw-r--r-- | buildtools/wafsamba/samba_wildcard.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_wildcard.py b/buildtools/wafsamba/samba_wildcard.py index ecf3498c85..19f70efc92 100644 --- a/buildtools/wafsamba/samba_wildcard.py +++ b/buildtools/wafsamba/samba_wildcard.py @@ -30,7 +30,8 @@ def run_named_build_task(cmd): t.position= [0,0] print(t.display()) run_task(t, k) - return + found = True + if not found: raise Utils.WafError("Unable to find build target matching %s" % cmd) |