-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ensure that Python install destination exists
- Loading branch information
1 parent
eaba48d
commit f20c473
Showing
1 changed file
with
3 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f20c473
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dirk-thomas This change breaks DESTDIR for me.
f20c473
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mikepurvis That's not much to go on, can you explain how you think it is causing
DESTDIR
not to work?f20c473
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm, I can see that happening. Can you please give it a try with the following line instead:
f20c473
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That fixes it, thanks. 👍
f20c473
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Interesting, I'm curious why what we pass to the
setup.py
doesn't need to be adjusted too:f20c473#diff-227e03260c0f962311819d32ab4341b6R33
Does the
setup.py
respectDESTDIR
implicitly?f20c473
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@wjwwood We explicitly pass
--root=...
for that: f20c473#diff-227e03260c0f962311819d32ab4341b6R12@mikepurvis I created PR #776 with the patch. Thanks for reporting!