Skip to content

Commit

Permalink
Update aksetup
Browse files Browse the repository at this point in the history
  • Loading branch information
inducer committed Oct 23, 2013
1 parent 6415373 commit 4ea29e3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions aksetup_helper.py
Expand Up @@ -559,12 +559,11 @@ def set_up_shipped_boost_if_requested(project_name, conf):
if not isdir(bpl_project_boost_inc):
try:
from os import symlink
except ImportError:
symlink("boost", bpl_project_boost_inc)
except (ImportError, OSError):
from shutil import copytree
print("Copying files, hang on... (do not interrupt)")
copytree(main_boost_inc, bpl_project_boost_inc)
else:
symlink("boost", bpl_project_boost_inc)

return (source_files,
{
Expand Down

0 comments on commit 4ea29e3

Please sign in to comment.