summaryrefslogtreecommitdiff
path: root/buildtools/wafsamba/samba_deps.py
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-10-17 22:34:17 +1100
committerAndrew Tridgell <tridge@samba.org>2010-10-19 11:22:35 +1100
commit1b8355897d1db0a127b6357ff5a3b2eb1c1e3b71 (patch)
tree2a2e304889391d80e587930aea5d79be5c04c021 /buildtools/wafsamba/samba_deps.py
parentd48570143656d1c570c282f8e21e058508910f3c (diff)
downloadsamba-1b8355897d1db0a127b6357ff5a3b2eb1c1e3b71.tar.gz
samba-1b8355897d1db0a127b6357ff5a3b2eb1c1e3b71.tar.bz2
samba-1b8355897d1db0a127b6357ff5a3b2eb1c1e3b71.zip
waf: don't save deps on install
this prevents an install triggering a new check of the project rules on the next build
Diffstat (limited to 'buildtools/wafsamba/samba_deps.py')
-rw-r--r--buildtools/wafsamba/samba_deps.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_deps.py b/buildtools/wafsamba/samba_deps.py
index dee9f5d0f8..933a18b369 100644
--- a/buildtools/wafsamba/samba_deps.py
+++ b/buildtools/wafsamba/samba_deps.py
@@ -978,7 +978,8 @@ def check_project_rules(bld):
debug('deps: project rules checking completed - %u targets checked',
len(tgt_list))
- save_samba_deps(bld, tgt_list)
+ if not bld.is_install:
+ save_samba_deps(bld, tgt_list)
Logs.info("Project rules pass")