diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-04 10:06:34 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:25 +1000 |
commit | 528d7c7cf39fe9d8867d751f0a3c26f413301515 (patch) | |
tree | 3c1f25dadfd96ba179ec338740c3906d37ed6076 /lib/tdb | |
parent | c8062fb65ee108fa948fd8d8ed4055ffa3af7027 (diff) | |
download | samba-528d7c7cf39fe9d8867d751f0a3c26f413301515.tar.gz samba-528d7c7cf39fe9d8867d751f0a3c26f413301515.tar.bz2 samba-528d7c7cf39fe9d8867d751f0a3c26f413301515.zip |
s4-waf: added 'waf dist' to our standalone libs as well
Diffstat (limited to 'lib/tdb')
-rw-r--r-- | lib/tdb/wscript | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/tdb/wscript b/lib/tdb/wscript index d16516b8b5..87bdcdf79d 100644 --- a/lib/tdb/wscript +++ b/lib/tdb/wscript @@ -1,6 +1,7 @@ #!/usr/bin/env python -VERSION='1.2.1' +APPNAME = 'tdb' +VERSION = '1.2.1' srcdir = '../..' blddir = 'bin' @@ -18,6 +19,7 @@ def set_options(opt): opt.recurse(LIBREPLACE_DIR) def configure(conf): + conf.DIST_DIRS('lib/tdb:. lib/replace:lib/replace buildtools:buildtools') conf.sub_config(LIBREPLACE_DIR) if conf.CHECK_BUNDLED_SYSTEM('tdb', minversion=VERSION, |