diff options
author | P. J. McDermott <pjm@nac.net> | 2013-05-27 07:20:16 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-05-27 07:22:12 (EDT) |
commit | fd935fcebe18a42dad8f9e9be3a09c829a029ae1 (patch) | |
tree | 8ffc93fc59d7fefc561eac4c5c008bfafe19ac20 /busybox.pkg/prerm | |
parent | 11218e9a094cc4768ae777430acf916f6b0a85ef (diff) |
Manage /usr/bin/ar with update-alternatives.
Diffstat (limited to 'busybox.pkg/prerm')
-rwxr-xr-x | busybox.pkg/prerm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/busybox.pkg/prerm b/busybox.pkg/prerm new file mode 100755 index 0000000..7f466ae --- /dev/null +++ b/busybox.pkg/prerm @@ -0,0 +1,5 @@ +#!/bin/sh + +if [ "${1}" = remove ]; then + update-alternatives --remove ar /usr/bin/ar.busybox +fi |