diff options
author | Rosen Penev <rosenp@gmail.com> | 2019-10-22 11:55:48 -0700 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2019-10-27 14:25:30 +0100 |
commit | cf8f9af0e096a58816be2917c7f5cab696a01d8c (patch) | |
tree | c31a19d29ff416840dd33aac9aabc9c42f2fb7a4 /package/utils/util-linux/Makefile | |
parent | 0130022baec0a90c6cb039a5cbe9b9c65c01672f (diff) | |
download | upstream-cf8f9af0e096a58816be2917c7f5cab696a01d8c.tar.gz upstream-cf8f9af0e096a58816be2917c7f5cab696a01d8c.tar.bz2 upstream-cf8f9af0e096a58816be2917c7f5cab696a01d8c.zip |
util-linux: Disable utils requiring libpam
When the build system finds libpam, it enables building of these tools,
causing linker failures. Explicitly disable them as they are unused.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'package/utils/util-linux/Makefile')
-rw-r--r-- | package/utils/util-linux/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/package/utils/util-linux/Makefile b/package/utils/util-linux/Makefile index e61e501762..29ad135033 100644 --- a/package/utils/util-linux/Makefile +++ b/package/utils/util-linux/Makefile @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=util-linux PKG_VERSION:=2.34 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=@KERNEL/linux/utils/$(PKG_NAME)/v2.34 @@ -513,8 +513,14 @@ CONFIGURE_ARGS += \ --disable-use-tty-group \ --disable-rpath \ --disable-tls \ + --disable-su \ --disable-sulogin \ --disable-makeinstall-chown \ + --disable-login \ + --disable-nologin \ + --disable-lslogins \ + --disable-runuser \ + --disable-chfn-chsh \ --without-python \ --without-udev \ --without-readline \ |