diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-01-07 19:39:40 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2019-01-07 22:14:06 +0000 |
commit | 3ecac78023d693c96a3e43bb93626e4f6094b14c (patch) | |
tree | 78e7b833fc7fa5a502ecdf0e8453022c000dc2f1 | |
parent | 0f4f473775405d56ed68d0692a5d70b9a319f434 (diff) | |
download | packages-3ecac78023d693c96a3e43bb93626e4f6094b14c.tar.gz packages-3ecac78023d693c96a3e43bb93626e4f6094b14c.tar.bz2 packages-3ecac78023d693c96a3e43bb93626e4f6094b14c.tar.xz packages-3ecac78023d693c96a3e43bb93626e4f6094b14c.zip |
system/util-linux: enable last(1), link with utmps
-rw-r--r-- | system/util-linux/APKBUILD | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/system/util-linux/APKBUILD b/system/util-linux/APKBUILD index 350ffe057..138d6f402 100644 --- a/system/util-linux/APKBUILD +++ b/system/util-linux/APKBUILD @@ -9,7 +9,7 @@ case $pkgver in *.*) _v=$pkgver;; esac -pkgrel=0 +pkgrel=1 pkgdesc="Official Linux system management utilities" url="http://git.kernel.org/cgit/utils/util-linux/util-linux.git" arch="all" @@ -43,8 +43,8 @@ prepare() { build() { cd "$builddir" - # login utils are provided by shadow (with PAM) or busybox (no PAM) --nenolod - ./configure \ + # login utils are provided by shadow + LIBS="-lutmps -lskarnet" ./configure \ --build=$CBUILD \ --host=$CHOST \ --with-sysroot=$CBUILDROOT \ @@ -54,7 +54,6 @@ build() { --disable-tls \ --disable-kill \ --disable-login \ - --disable-last \ --disable-sulogin \ --disable-su \ --without-python |