stdenv: Remove unpack-bootstrap-tools-arm.sh

This file was using the 'double patchelf' hack, which hasn't been needed
for a while, after the original patchelf bug was fixed:

https://github.com/NixOS/patchelf/commit/65a4dc6aa982191b11c739c4c9b802c7fa4cbebb
This commit is contained in:
Tuomas Tynkkynen
2016-07-20 02:38:10 +03:00
committed by Tuomas Tynkkynen
parent 584b667efc
commit 8d62f62a78
2 changed files with 1 additions and 68 deletions
+1 -4
View File
@@ -42,10 +42,7 @@ rec {
builder = bootstrapFiles.busybox;
args = if system == "armv5tel-linux" then
[ "ash" "-e" ./scripts/unpack-bootstrap-tools-arm.sh ]
else
[ "ash" "-e" ./scripts/unpack-bootstrap-tools.sh ];
args = [ "ash" "-e" ./scripts/unpack-bootstrap-tools.sh ];
tarball = bootstrapFiles.bootstrapTools;