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
fb33da08
Commit
fb33da08
authored
Jul 17, 2018
by
Michael Davidsaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
try symlink
parent
5812b0c5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
src/setuptools_dso/dsocmd.py
src/setuptools_dso/dsocmd.py
+5
-1
No files found.
src/setuptools_dso/dsocmd.py
View file @
fb33da08
...
@@ -314,7 +314,11 @@ class build_dso(dso2libmixin, Command):
...
@@ -314,7 +314,11 @@ class build_dso(dso2libmixin, Command):
self
.
dso2lib_post
(
outlib
)
self
.
dso2lib_post
(
outlib
)
if
baselib
!=
solib
:
if
baselib
!=
solib
:
self
.
copy_file
(
outlib
,
outbaselib
)
# link="sym" seem to get the target path wrong
# we make best effort here, even though zipfiles (.whl or .egg) will contain copies
log
.
info
(
"symlink %s -> %s"
,
os
.
path
.
basename
(
solib
),
outlib
)
if
not
self
.
dry_run
:
os
.
symlink
(
os
.
path
.
basename
(
solib
),
outbaselib
)
#self.copy_file(outlib, outbaselib) # link="sym" seem to get the target path wrong
if
self
.
inplace
:
if
self
.
inplace
:
self
.
copy_file
(
outlib
,
solib
)
self
.
copy_file
(
outlib
,
solib
)
...
...
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