From 1ed5f7182074768a84eefc00bd2af64933799b4d Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sat, 24 Apr 2010 20:02:44 +0200 Subject: buildtools/wafsamba: make sure we create bin/default/ before trying to create symlinks in it metze --- buildtools/wafsamba/wafsamba.py | 1 + 1 file changed, 1 insertion(+) 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): -- cgit