diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-11-08 14:40:38 (EST) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2020-11-08 14:40:38 (EST) |
commit | e00facdaa170b45862d404a9a28874f5f0223dad (patch) | |
tree | 788f1843454cf0109886d5263d714a08aa50ad03 | |
parent | 738031a819725fe3baa3b8942d4304404e5b14d5 (diff) |
build: Don't u-a /bin/busybox
-rwxr-xr-x | build | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -39,6 +39,7 @@ install: build mkdir -p dest/usr/share/busybox set -e; exec 3>dest/usr/share/busybox/alternatives; \ for f in dest/bin/* dest/sbin/* dest/usr/bin/* dest/usr/sbin/*; do \ + [ x"$${f}" = x'dest/bin/busybox' ] && continue; \ mv "$${f}" "$${f}.busybox"; \ printf '%s\n' "$${f#dest}" >&3; \ done; \ |