diff options
-rwxr-xr-x | busybox.pkg/prerm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/busybox.pkg/prerm b/busybox.pkg/prerm index c27fe7e..54b5053 100755 --- a/busybox.pkg/prerm +++ b/busybox.pkg/prerm @@ -1,6 +1,6 @@ #!/bin/sh -if [ "${1}" = remove ]; then +if [ "x${1}" = 'xremove' ]; then while read link name prio; do update-alternatives --remove "${name}" "${link}.busybox" done </usr/share/busybox/alternatives |