diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-04-24 20:02:44 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-04-24 20:03:50 +0200 |
commit | 1ed5f7182074768a84eefc00bd2af64933799b4d (patch) | |
tree | cbe253823a3576a2897c863f03d73aa364df0873 /buildtools/wafsamba | |
parent | c88b83b7c1abc53866cda4e67c5183e11e31a910 (diff) | |
download | samba-1ed5f7182074768a84eefc00bd2af64933799b4d.tar.gz samba-1ed5f7182074768a84eefc00bd2af64933799b4d.tar.xz samba-1ed5f7182074768a84eefc00bd2af64933799b4d.zip |
buildtools/wafsamba: make sure we create bin/default/ before trying to create symlinks in it
metze
Diffstat (limited to 'buildtools/wafsamba')
-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 0f6a4fe28e1..95410aac6e2 100644 --- a/buildtools/wafsamba/wafsamba.py +++ b/buildtools/wafsamba/wafsamba.py @@ -57,6 +57,7 @@ def SAMBA_BUILD_ENV(conf): 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 + mkdir_p(os.path.join(conf.blddir, 'default')) for p in ['python','shared']: link_target = os.path.join(conf.blddir, 'default/' + p) if not os.path.lexists(link_target): |