about summary refs log tree commit diff
path: root/pkgs/stdenv/linux/bootstrap-tools-musl
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-04-24 21:22:52 -0500
committerWill Dietz <w@wdtz.org>2018-04-24 21:27:28 -0500
commit791b5bbbf4d7ec7de8c1a5df0ee3be08ae8670c9 (patch)
treed2bdbff52dc31a70626b97eeeb40d2e63b698a18 /pkgs/stdenv/linux/bootstrap-tools-musl
parentde00c0d7fbdbc27fd4a7a5addf5d42d3a90e3181 (diff)
musl bootstrap: remove libiconv
Diffstat (limited to 'pkgs/stdenv/linux/bootstrap-tools-musl')
-rw-r--r--pkgs/stdenv/linux/bootstrap-tools-musl/scripts/unpack-bootstrap-tools.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/stdenv/linux/bootstrap-tools-musl/scripts/unpack-bootstrap-tools.sh b/pkgs/stdenv/linux/bootstrap-tools-musl/scripts/unpack-bootstrap-tools.sh
index 8b5070dc6d6fb..b160a748d8dc8 100644
--- a/pkgs/stdenv/linux/bootstrap-tools-musl/scripts/unpack-bootstrap-tools.sh
+++ b/pkgs/stdenv/linux/bootstrap-tools-musl/scripts/unpack-bootstrap-tools.sh
@@ -26,7 +26,7 @@ for i in $out/bin/* $out/libexec/gcc/*/*/*; do
         ./patchelf --set-interpreter $LD_BINARY --set-rpath $out/lib --force-rpath "$i"
 done
 
-for i in $out/lib/libiconv*.so $out/lib/libpcre* $out/lib/libc.so; do
+for i in $out/lib/libpcre* $out/lib/libc.so; do
     if [ -L "$i" ]; then continue; fi
     echo patching "$i"
     $out/bin/patchelf --set-rpath $out/lib --force-rpath "$i"