diff options
author | Andy Schwerin <schwerin@10gen.com> | 2012-08-10 13:19:32 -0400 |
---|---|---|
committer | Andy Schwerin <schwerin@10gen.com> | 2012-08-10 13:19:32 -0400 |
commit | 4de20c728f07f18f6d046967d2c83997bb77d7ae (patch) | |
tree | bdd533757d8d5bf3c2cc20c09868c20dec51c739 /site_scons | |
parent | 767a5a48126b586e13a4af5e1b1e1b7567e8d736 (diff) | |
download | mongo-4de20c728f07f18f6d046967d2c83997bb77d7ae.tar.gz |
Add libdeps to signatures for built items.
Diffstat (limited to 'site_scons')
-rw-r--r-- | site_scons/libdeps.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/site_scons/libdeps.py b/site_scons/libdeps.py index a423e33c6c0..561b9620244 100644 --- a/site_scons/libdeps.py +++ b/site_scons/libdeps.py @@ -137,30 +137,20 @@ def get_libdeps(source, target, env, for_signature): Expands to the library dependencies for a target. """ - if for_signature: - return [] target = env.Flatten([target]) return list(__get_libdeps(target[0], 'LIBDEPS')) def get_libdeps_objs(source, target, env, for_signature): - if for_signature: - return [] - objs = set() for lib in get_libdeps(source, target, env, for_signature): objs.update(lib.sources_set) return list(objs) def get_libdeps_special_sun(source, target, env, for_signature): - if for_signature: - return [] - x = get_libdeps(source, target, env, for_signature ) return x + x + x def get_syslibdeps(source, target, env, for_signature): - if for_signature: - return[] deps = list(__get_libdeps(target[0], 'SYSLIBDEPS')) return deps |