-
-
Notifications
You must be signed in to change notification settings - Fork 15.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mkPythonDerivation: append postFixup, fixes #9204
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 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
85a87f5
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.
@FRidh on #3134 we're tracking down why django packages are getting their project templates
wrapPythonPrograms
-wrapped again when that was fixed a while ago. Agit bisect
pointed to this being the guilty commit and it makes sense why - following thiswrapPythonPrograms
gets called unconditionally, whatever the contents ofpostFixup
.Thoughts on achieving the desired end without this side effect?
85a87f5
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.
85a87f5
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.
Mmm... that seems a little extreme as it will also lose us any interpreter path patching etc.
What would you think about taking a leaf out of
mkDerivation
's book and obeying adontWrapPythonPrograms
flag (or something) a ladontPatchELF
?85a87f5
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.
85a87f5
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.
Cool - will do