Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
cb1e6442
Commit
cb1e6442
authored
Dec 16, 2015
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
python/boost: use shutil.copytree()
parent
9bc0fada
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
11 deletions
+3
-11
boost.py
python/build/boost.py
+3
-11
No files found.
python/build/boost.py
View file @
cb1e6442
...
...
@@ -18,14 +18,6 @@ class BoostProject(Project):
# install the headers manually; don't build any library
# (because right now, we only use header-only libraries)
includedir
=
os
.
path
.
join
(
toolchain
.
install_prefix
,
'include'
)
for
dirpath
,
dirnames
,
filenames
in
os
.
walk
(
os
.
path
.
join
(
src
,
'boost'
)):
relpath
=
dirpath
[
len
(
src
)
+
1
:]
destdir
=
os
.
path
.
join
(
includedir
,
relpath
)
try
:
os
.
mkdir
(
destdir
)
except
:
pass
for
name
in
filenames
:
if
name
[
-
4
:]
==
'.hpp'
:
shutil
.
copyfile
(
os
.
path
.
join
(
dirpath
,
name
),
os
.
path
.
join
(
destdir
,
name
))
dest
=
os
.
path
.
join
(
includedir
,
'boost'
)
shutil
.
rmtree
(
dest
,
ignore_errors
=
True
)
shutil
.
copytree
(
os
.
path
.
join
(
src
,
'boost'
),
dest
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment