diff options
| author | Natanael Copa <ncopa@alpinelinux.org> | 2018-07-17 15:18:13 +0000 |
|---|---|---|
| committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-07-17 17:20:20 +0200 |
| commit | 6fd8cbccb1698bb729dfd5cef6913ff3faac4179 (patch) | |
| tree | 35704ddaeca02aef2522b3e29639357d72e8c5ee /main | |
| parent | a09f7ff0c8d7670c82cb1d4d1c4564aef64419e4 (diff) | |
| download | aports-6fd8cbccb1698bb729dfd5cef6913ff3faac4179.tar.bz2 aports-6fd8cbccb1698bb729dfd5cef6913ff3faac4179.tar.xz | |
main/busybox: fix deinstall script for busybox-extras
fixes #9037
(cherry picked from commit 9e52fe232d0904c340f2d0f03b7ed71158dbc624)
Diffstat (limited to 'main')
| -rw-r--r-- | main/busybox/APKBUILD | 2 | ||||
| -rw-r--r-- | main/busybox/busybox-extras.pre-deinstall | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/main/busybox/APKBUILD b/main/busybox/APKBUILD index 946cccbb8f..ea8e17c543 100644 --- a/main/busybox/APKBUILD +++ b/main/busybox/APKBUILD @@ -3,7 +3,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=busybox pkgver=1.28.4 -pkgrel=0 +pkgrel=1 pkgdesc="Size optimized toolbox of many common UNIX utilities" url=http://busybox.net arch="all" diff --git a/main/busybox/busybox-extras.pre-deinstall b/main/busybox/busybox-extras.pre-deinstall index 15461302ce..5ae91ccbc2 100644 --- a/main/busybox/busybox-extras.pre-deinstall +++ b/main/busybox/busybox-extras.pre-deinstall @@ -2,7 +2,7 @@ # Remove all symlinks to busybox-extras cd / -for link in $(busybox-extras --list --full); do +for link in $(busybox-extras --list-full); do if [ -L "$link" ] && [ "$(readlink $link)" = "/bin/busybox-extras" ]; then rm "$link" fi |
