summary refs log tree commit diff
path: root/pkgs/shells/bash-static/builder.sh
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/shells/bash-static/builder.sh')
-rw-r--r--pkgs/shells/bash-static/builder.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/pkgs/shells/bash-static/builder.sh b/pkgs/shells/bash-static/builder.sh
deleted file mode 100644
index b8c3a401022..00000000000
--- a/pkgs/shells/bash-static/builder.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-source $stdenv/setup
-genericBuild
-cd $out/bin
-
-find . -type f | while read fn; do
-    cat $fn | sed "s|/nix/store/[a-z0-9]*-|/nix/store/ffffffffffffffffffffffffffffffff-|g" > $fn.tmp
-    if test -x $fn; then chmod +x $fn.tmp; fi
-    mv $fn.tmp $fn
-done
-
-strip $out/bin/bash
-ln -s bash sh