From 9c333176a3dae8aa4fa5468e3345d71bc10c44ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nuno=20Gon=C3=A7alves?= Date: Thu, 10 Nov 2022 14:00:54 +0000 Subject: [PATCH] packages/sudo: explicitly set enable-tmpfiles.d MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit sudo's configure script looks up on the host to determine the path where to install its systemd tmpfiles. That is incorrect in cross-compilation. We can explicitly tell sudo where to install its tmpfiles, which we do when systemd is enabled (in Buildroot, systemd-tmpfiles is always enabled when systemd is), or we can tell it not to install tmpfiles at all, which we do otherwise. Signed-off-by: Nuno Gonçalves [yann.morin.1998@free.fr: reword and extend commit log] Signed-off-by: Yann E. MORIN --- package/sudo/sudo.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/sudo/sudo.mk b/package/sudo/sudo.mk index 28cfcbb1e2..8e237bd36a 100644 --- a/package/sudo/sudo.mk +++ b/package/sudo/sudo.mk @@ -17,6 +17,7 @@ SUDO_SELINUX_MODULES = sudo SUDO_INSTALL_TARGET_OPTS = INSTALL_OWNER="" DESTDIR="$(TARGET_DIR)" install SUDO_CONF_OPTS = \ --with-tzdir=$(if $(BR2_PACKAGE_TZDATA),/usr/share/zoneinfo,no) \ + --enable-tmpfiles.d=$(if $(BR2_PACKAGE_SYSTEMD),/usr/lib/tmpfiles.d,no) \ --without-lecture \ --without-sendmail \ --without-umask \