From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] sudo: Enable testsuite. Date: Wed, 12 Oct 2016 11:01:03 +0200 Message-ID: <1476262863-2450-1-git-send-email-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8395375926371633488==" List-Id: --===============8395375926371633488== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Stefan Schantl --- sudo/sudo.nm | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/sudo/sudo.nm b/sudo/sudo.nm index d76650d..1b2dcb1 100644 --- a/sudo/sudo.nm +++ b/sudo/sudo.nm @@ -5,7 +5,7 @@ name = sudo version = 1.8.18p1 -release = 1 +release = 2 groups = Applications/System url = http://www.sudo.ws/ @@ -34,6 +34,8 @@ build pam-devel end + export LD_LIBRARY_PATH = %{DIR_APP}/lib/util/.libs/ + configure_options += \ --libexecdir=%{libdir} \ --with-logging=syslog \ @@ -48,8 +50,18 @@ build --with-passprompt="[sudo] password for %p: " \ --with-linux-audit + prepare_cmds + # The tarball contains files owned by a stange uid:gid which will let + # the testsuite (testsudoers/test3) fail. Fix the ownership of this files. + chown -R 0:0 %{DIR_APP} + end + + test + make check + end + install_cmds - mkdir -pv %{BUILDROOT}/etc + mkdir -pv %{BUILDROOT}%{sysconfdir} cp -vf %{DIR_SOURCE}/sudoers %{BUILDROOT}%{sysconfdir}/sudoers end end -- 2.7.4 --===============8395375926371633488==--