392 |
""" |
""" |
393 |
|
|
394 |
description =\ |
description =\ |
395 |
"Create some symlink so you can run thubanfrom the source directory" |
"Create some symlinks so you can run thuban from the source directory" |
396 |
|
|
397 |
user_options = [ |
user_options = [ |
398 |
('skip-build', None, "skip the build steps"), |
('skip-build', None, "skip the build steps"), |
416 |
# now do the work. Simply link or copy the Lib dir |
# now do the work. Simply link or copy the Lib dir |
417 |
libdir = os.path.join(self.build_dir, "Lib") |
libdir = os.path.join(self.build_dir, "Lib") |
418 |
if os.name == "posix": |
if os.name == "posix": |
419 |
# on posix, just lilnk the Lib dir |
# on posix, just link the Lib dir |
420 |
self.link_dir(libdir, "Lib") |
self.link_dir(libdir, "Lib") |
421 |
else: |
else: |
422 |
self.copy_tree(libdir, "Lib") |
self.copy_tree(libdir, "Lib") |