diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-19 10:48:32 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:53 +1000 |
commit | 651941abbaafc29bff68d37f2ff343cf05982008 (patch) | |
tree | 4fd49a2bd62c23a8890dea75d800b598db006619 /buildtools | |
parent | dc68427b0e1691db6a52f9eb5e77c42755eea2b2 (diff) | |
download | samba-651941abbaafc29bff68d37f2ff343cf05982008.tar.gz samba-651941abbaafc29bff68d37f2ff343cf05982008.tar.bz2 samba-651941abbaafc29bff68d37f2ff343cf05982008.zip |
build: python modules need the libs from broken lib loops too
Diffstat (limited to 'buildtools')
-rw-r--r-- | buildtools/wafsamba/samba_deps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafsamba/samba_deps.py b/buildtools/wafsamba/samba_deps.py index fa34cb8fcf..a3910b0d28 100644 --- a/buildtools/wafsamba/samba_deps.py +++ b/buildtools/wafsamba/samba_deps.py @@ -584,7 +584,7 @@ def calculate_final_deps(bld, tgt_list): # we now need to make corrections for any library loops we broke up # any target that depended on the target of the loop and doesn't # depend on the source of the loop needs to get the loop source added - for type in ['BINARY']: + for type in ['BINARY','PYTHON']: for t in tgt_list: if t.samba_type != type: continue for loop in loops: |