From b85b8e51a5575e0ae6a6f3615582b9ae64aaea2d Mon Sep 17 00:00:00 2001 From: Abhimanyu Saharan Date: Sun, 29 Apr 2018 22:30:54 +0530 Subject: [PATCH] Update build.sh --- build-system/util-linux-1/build.sh | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/build-system/util-linux-1/build.sh b/build-system/util-linux-1/build.sh index 4c4c1d8..0a7d1e9 100755 --- a/build-system/util-linux-1/build.sh +++ b/build-system/util-linux-1/build.sh @@ -4,7 +4,7 @@ shopt -s -o pipefail set -e # Exit on error PKG_NAME="util-linux" -PKG_VERSION="2.29.2" +PKG_VERSION="2.32" TARBALL="${PKG_NAME}-${PKG_VERSION}.tar.xz" SRC_DIR="${PKG_NAME}-${PKG_VERSION}" @@ -26,9 +26,17 @@ function unpack() { } function build() { - ./configure --enable-write \ - ADJTIME_PATH=/var/lib/hwclock/adjtime - + ./configure --disable-chfn-chsh \ + --disable-login \ + --disable-nologin \ + --disable-su \ + --disable-setpriv \ + --disable-runuser \ + --disable-pylibmount \ + --disable-static \ + --without-python \ + --without-systemd \ + --without-systemdsystemunitdir make ${MAKE_PARALLEL} }