Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools_dso
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
setuptools_dso
Commits
c51e7b77
Commit
c51e7b77
authored
Jul 08, 2018
by
Michael Davidsaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor
parent
150979d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
src/setuptools_dso/dsocmd.py
src/setuptools_dso/dsocmd.py
+7
-0
No files found.
src/setuptools_dso/dsocmd.py
View file @
c51e7b77
...
...
@@ -34,6 +34,13 @@ def expand_sources(cmd, sources):
cand
=
os
.
path
.
join
(
cmd
.
build_temp
,
src
)
if
os
.
path
.
exists
(
cand
):
sources
[
i
]
=
cand
continue
if
os
.
name
==
'nt'
:
cand
=
os
.
path
.
join
(
os
.
path
.
dirname
(
cmd
.
build_temp
),
src
)
# strip /Release or /Debug
if
os
.
path
.
exists
(
cand
):
sources
[
i
]
=
cand
continue
raise
RuntimeError
(
"Missing source file: %s"
%
src
)
class
Extension
(
_Extension
):
def
__init__
(
self
,
name
,
sources
,
...
...
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