Skip to content

Commit

Permalink
stdenv bootstrap: fix evaluation
Browse files Browse the repository at this point in the history
This is probably a fallout from #28557 merge and revert.
I can't see why exactly this happened, but it seems a safe fix.
  • Loading branch information
vcunat committed Sep 10, 2017
1 parent dab3272 commit c86eb1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/stdenv/linux/make-bootstrap-tools.nix
Expand Up @@ -126,9 +126,9 @@ rec {
# Copy binutils.
for i in as ld ar ranlib nm strip readelf objdump; do
cp ${binutils.binutils.out}/bin/$i $out/bin
cp ${binutils.out}/bin/$i $out/bin
done
cp -d ${binutils.binutils.lib}/lib/lib*.so* $out/lib
cp -d ${binutils.lib}/lib/lib*.so* $out/lib
chmod -R u+w $out
Expand Down

1 comment on commit c86eb1d

@Ericson2314
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes it was erroneously not reverted. For the record, this is because only the unwrapped binutils had the extra input.

Please sign in to comment.