summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2014-02-19 19:26:58 (EST)
committer P. J. McDermott <pjm@nac.net>2014-02-19 19:26:58 (EST)
commitceef092839b88b388a77190ba3bd0a331e5ff9e7 (patch)
tree0cb0550ddd824c8da363f3daa94cf1c1ef1771b0 /build
parent8e3ec3ad08dfdf18151e01fd23a9d33b6e9c20f4 (diff)
Refactor update-alternatives stuff into loops.
Diffstat (limited to 'build')
-rwxr-xr-xbuild18
1 files changed, 12 insertions, 6 deletions
diff --git a/build b/build
index c7178fc..80d4b74 100755
--- a/build
+++ b/build
@@ -31,12 +31,18 @@ install:
oh-fixperms
oh-strip
chmod u+s dest/bin/busybox
- mv dest/usr/bin/awk dest/usr/bin/awk.busybox
- mv dest/usr/bin/ar dest/usr/bin/ar.busybox
- mv dest/usr/bin/strings dest/usr/bin/strings.busybox
- mv dest/usr/bin/clear dest/usr/bin/clear.busybox
- mv dest/usr/bin/reset dest/usr/bin/reset.busybox
- mv dest/usr/bin/mkpasswd dest/usr/bin/mkpasswd.busybox
+ set -e; for path in \
+ /usr/bin/awk \
+ /usr/bin/ar \
+ /usr/bin/strings \
+ /usr/bin/clear \
+ /usr/bin/reset \
+ /usr/bin/mkpasswd \
+ ; do \
+ if [ -e "dest/$${path}" ]; then \
+ mv "dest/$${path}" "dest/$${path}.busybox"; \
+ fi; \
+ done
set -e; $(config_enabled); $(install_init_script); \
if config_enabled INIT; then \
install -d -m 0755 dest/etc; \