diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2010-09-05 20:16:50 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-09-05 20:16:50 +0200 |
commit | cf616ec316f9ee24d1fb8aacdf512f354fa4f656 (patch) | |
tree | 82bd8f6bbf7cc10610dff93d17a83e0fa2e82da2 | |
parent | 61e537cf50ef60176c65c3a73d9a2f55c54e01e0 (diff) | |
download | samba-cf616ec316f9ee24d1fb8aacdf512f354fa4f656.tar.gz samba-cf616ec316f9ee24d1fb8aacdf512f354fa4f656.tar.xz samba-cf616ec316f9ee24d1fb8aacdf512f354fa4f656.zip |
wafsamba: Create bin/defaukt/modules if it does not yet exist.
-rw-r--r-- | buildtools/wafsamba/wafsamba.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py index 80a6f714170..50d0df24a09 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -55,6 +55,7 @@ def SAMBA_BUILD_ENV(conf): '''create the samba build environment''' conf.env.BUILD_DIRECTORY = conf.blddir mkdir_p(os.path.join(conf.blddir, LIB_PATH)) + mkdir_p(os.path.join(conf.blddir, "modules")) mkdir_p(os.path.join(conf.blddir, 'python/samba/dcerpc')) # this allows all of the bin/shared and bin/python targets # to be expressed in terms of build directory paths |