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
ec2a2522
Commit
ec2a2522
authored
Nov 20, 2015
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
win32/build.py: restore option "out_of_tree"
Got lost in the previous commit.
parent
556f9ee3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
3 deletions
+7
-3
build.py
win32/build.py
+7
-3
No files found.
win32/build.py
View file @
ec2a2522
...
...
@@ -92,9 +92,13 @@ class Project:
except
FileNotFoundError
:
return
False
def
unpack
(
self
):
global
src_path
return
untar
(
self
.
download
(),
src_path
,
self
.
base
)
def
unpack
(
self
,
out_of_tree
=
True
):
global
src_path
,
build_path
if
out_of_tree
:
parent_path
=
src_path
else
:
parent_path
=
build_path
return
untar
(
self
.
download
(),
parent_path
,
self
.
base
)
def
make_build_path
(
self
):
path
=
os
.
path
.
join
(
build_path
,
self
.
base
)
...
...
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