Make sure we create the usr/lib directory

This commit is contained in:
Martin Gracik 2010-02-25 20:26:54 +01:00
parent 1a3d76fc5b
commit d13f13e92f
1 changed files with 2 additions and 1 deletions

View File

@ -115,8 +115,9 @@ export PS1 PATH
with open(profile, "w") as f:
f.write(text)
# create the lib directory
# create the lib directories
os.mkdir(os.path.join(self.dsttree, self.conf.libdir))
os.mkdir(os.path.join(self.dsttree, "usr", self.conf.libdir))
# XXX
def get_kernel_modules(self, kernel, modset):