diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-13 19:46:29 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-13 20:15:41 +1000 |
commit | 42505df161bacc24b6f0bf72baee6995c51a260b (patch) | |
tree | 23c23fd0d6e117ff23a5e8d14f7cfbfe7a48e6d3 /lib/talloc | |
parent | 58abd9ac81e18276ee3e2dd9b545b1525f67f721 (diff) | |
download | samba-42505df161bacc24b6f0bf72baee6995c51a260b.tar.gz samba-42505df161bacc24b6f0bf72baee6995c51a260b.tar.bz2 samba-42505df161bacc24b6f0bf72baee6995c51a260b.zip |
talloc-waf: the talloc1-compat lib depends on talloc
It is a library linked to another library, not a 2nd copy of talloc.c
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'lib/talloc')
-rw-r--r-- | lib/talloc/wscript | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/talloc/wscript b/lib/talloc/wscript index 55f0e2ced6..bd47be8eaa 100644 --- a/lib/talloc/wscript +++ b/lib/talloc/wscript @@ -60,8 +60,8 @@ def build(bld): # should we also install the symlink to libtalloc1.so here? bld.SAMBA_LIBRARY('talloc-compat1', - 'talloc.c compat/talloc_compat1.c', - deps='replace', + 'compat/talloc_compat1.c', + deps='talloc', enabled = bld.env.TALLOC_COMPAT1, vnum=VERSION) |