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.

(cherry picked from commit c86eb1d)
  • Loading branch information
vcunat committed Sep 10, 2017
1 parent c651a0c commit 5f15a9f
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

0 comments on commit 5f15a9f

Please sign in to comment.