Skip to content

Commit

Permalink
Fix pythonWrapper when all of the binaries come from python
Browse files Browse the repository at this point in the history
See discussion in #834

Signed-off-by: Shea Levy <shea@shealevy.com>
  • Loading branch information
shlevy committed Oct 3, 2013
1 parent bee1d07 commit f6e835a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkgs/development/interpreters/python/wrapper.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@

postBuild = ''
. "${makeWrapper}/nix-support/setup-hook"
if [ -L "$out/bin" ]; then
unlink "$out/bin"
fi
mkdir -p "$out/bin"
cd "${python}/bin"
for prg in *; do
Expand Down

0 comments on commit f6e835a

Please sign in to comment.