diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2016-12-21 14:26:07 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2016-12-21 14:26:07 +0000 |
commit | 7a80f43f38f34c97e5c4e484146a3ac1e034da35 (patch) | |
tree | fbe029c5be98b41cdea4075a79cde14b8f4ebdbe /main/util-linux | |
parent | 013d91193b63e80be1f7d6542345a91d0237d0cf (diff) | |
download | aports-7a80f43f38f34c97e5c4e484146a3ac1e034da35.tar.bz2 aports-7a80f43f38f34c97e5c4e484146a3ac1e034da35.tar.xz |
main/util-linux: fix circular dep of findmnt
Diffstat (limited to 'main/util-linux')
-rw-r--r-- | main/util-linux/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/util-linux/APKBUILD b/main/util-linux/APKBUILD index e7203855ac..3f75880b99 100644 --- a/main/util-linux/APKBUILD +++ b/main/util-linux/APKBUILD @@ -9,7 +9,7 @@ case $pkgver in *.*) _v=$pkgver;; esac -pkgrel=0 +pkgrel=1 pkgdesc="Random collection of Linux utilities" url="http://git.kernel.org/cgit/utils/util-linux/util-linux.git" arch="all" @@ -158,6 +158,7 @@ mcookie() { _findmnt() { pkgdesc="findmnt from util-linux" replaces="" + depends="" mkdir -p "$subpkgdir"/bin mv "$pkgdir"/bin/findmnt "$subpkgdir"/bin } |