diff options
author | P. J. McDermott <pjm@nac.net> | 2013-09-08 10:43:45 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-09-08 10:43:45 (EDT) |
commit | d1aaf98b4a17cb21e7a9a1b6e18169e18d6c339c (patch) | |
tree | f1032ed5c7cef51a3bdab4c5b3f5c612b3360b95 | |
parent | fed95f36f75bf77a336905cf52d08c5af142cd34 (diff) |
Manage /usr/bin/awk with update-alternatives.
This is also provided by gawk.
-rwxr-xr-x | build | 1 | ||||
-rwxr-xr-x | busybox.pkg/postinst | 1 | ||||
-rwxr-xr-x | busybox.pkg/prerm | 1 |
3 files changed, 3 insertions, 0 deletions
@@ -31,6 +31,7 @@ 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 diff --git a/busybox.pkg/postinst b/busybox.pkg/postinst index 526a66c..3c1a964 100755 --- a/busybox.pkg/postinst +++ b/busybox.pkg/postinst @@ -1,6 +1,7 @@ #!/bin/sh if [ "x${1}" = 'xconfigure' ]; then + update-alternatives --install /usr/bin/awk awk /usr/bin/awk.busybox 10 update-alternatives --install /usr/bin/ar ar /usr/bin/ar.busybox 10 update-alternatives --install /usr/bin/strings strings \ /usr/bin/strings.busybox 10 diff --git a/busybox.pkg/prerm b/busybox.pkg/prerm index 12937d3..6cfc7e0 100755 --- a/busybox.pkg/prerm +++ b/busybox.pkg/prerm @@ -1,6 +1,7 @@ #!/bin/sh if [ "${1}" = remove ]; then + update-alternatives --remove awk /usr/bin/awk.busybox update-alternatives --remove ar /usr/bin/ar.busybox update-alternatives --remove strings /usr/bin/strings.busybox update-alternatives --remove clear /usr/bin/clear.busybox |