aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2020-06-01 06:17:06 +0000
committerRasmus Thomsen <oss@cogitri.dev>2020-06-04 14:10:23 +0000
commitd5284890ae27bea087a411384b813a8189f6dedc (patch)
tree501255c66d74cc614a86567b1e00973574e7190d
parentc8e669399eef45338db6c6633baaf157c49eb76e (diff)
main/util-linux: fix lint errors
-rw-r--r--main/util-linux/APKBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/util-linux/APKBUILD b/main/util-linux/APKBUILD
index 49e930c2298..9192ddc4e08 100644
--- a/main/util-linux/APKBUILD
+++ b/main/util-linux/APKBUILD
@@ -13,7 +13,7 @@ pkgrel=1
pkgdesc="Random collection of Linux utilities"
url="https://git.kernel.org/cgit/utils/util-linux/util-linux.git"
arch="all"
-license="GPL-2.0 GPL-2.0-or-later LGPL-2.0-or-later BSD Public-Domain"
+license="GPL-3.0-or-later GPL-2.0-or-later GPL-2.0-only LGPL-2.1-or-later BSD-3-Clause BSD-4-Clause-UC" # Some code is also Public Domain
depends="blkid setpriv findmnt mcookie hexdump lsblk sfdisk cfdisk"
makedepends_build="autoconf automake libtool"
makedepends_host="zlib-dev ncurses-dev linux-headers libcap-ng-dev linux-pam-dev"
@@ -86,7 +86,7 @@ _mv_bin() {
local _bin=$subpkgname
pkgdesc="$_bin from util-linux"
depends=
- case "_bin" in
+ case "$_bin" in
blkid) pkgdesc="Block device identification tool from util-linux";;
sfdisk) pkgdesc="Partition table manipulator from util-linux";;
cfdisk) pkgdesc="Curses based partition table manipulator from util-linux";;