diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-04-04 11:00:42 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:27:25 +1000 |
commit | 1883ee6dbc2482a34ce531cec3c1c7e5e85af1e7 (patch) | |
tree | aadeca78d8c2cb90afb691293fa5a1d6d7d15c0f /source4/wscript | |
parent | 3ed6d7e76f9e2936e2d27ceeee8984950ea900a3 (diff) | |
download | samba-1883ee6dbc2482a34ce531cec3c1c7e5e85af1e7.tar.gz samba-1883ee6dbc2482a34ce531cec3c1c7e5e85af1e7.tar.bz2 samba-1883ee6dbc2482a34ce531cec3c1c7e5e85af1e7.zip |
s4-waf: avoid having to run waf configure before waf dist
This should be useful for building tarballs from a clean checkout
Diffstat (limited to 'source4/wscript')
-rw-r--r-- | source4/wscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/wscript b/source4/wscript index 816093e293..36796d6333 100644 --- a/source4/wscript +++ b/source4/wscript @@ -10,6 +10,8 @@ import sys, os sys.path.insert(0, srcdir+"/buildtools/wafsamba") import wafsamba, Options, samba_dist +samba_dist.DIST_DIRS('.') + # install in /usr/local/samba by default Options.default_prefix = '/usr/local/samba' @@ -39,7 +41,6 @@ def configure(conf): conf.DEFINE('CONFIG_H_IS_FROM_SAMBA', 1) conf.DEFINE('_SAMBA_BUILD_', 4, add_to_cflags=True) conf.DEFINE('HAVE_CONFIG_H', 1, add_to_cflags=True) - conf.DIST_DIRS('.') if Options.options.developer: conf.ADD_CFLAGS('-DDEVELOPER -DDEBUG_PASSWORD') |