summaryrefslogtreecommitdiff
path: root/buildtools
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-04-24 20:02:44 +0200
committerStefan Metzmacher <metze@samba.org>2010-04-24 20:03:50 +0200
commit1ed5f7182074768a84eefc00bd2af64933799b4d (patch)
treecbe253823a3576a2897c863f03d73aa364df0873 /buildtools
parentc88b83b7c1abc53866cda4e67c5183e11e31a910 (diff)
downloadsamba-1ed5f7182074768a84eefc00bd2af64933799b4d.tar.gz
samba-1ed5f7182074768a84eefc00bd2af64933799b4d.tar.bz2
samba-1ed5f7182074768a84eefc00bd2af64933799b4d.zip
buildtools/wafsamba: make sure we create bin/default/ before trying to create symlinks in it
metze
Diffstat (limited to 'buildtools')
-rw-r--r--buildtools/wafsamba/wafsamba.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/buildtools/wafsamba/wafsamba.py b/buildtools/wafsamba/wafsamba.py
index 0f6a4fe28e..95410aac6e 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):