From: Craig Small Date: Sun, 17 Jul 2022 10:39:31 +0000 (+1000) Subject: testsuite: simplify DEJAGNU workaround X-Git-Tag: v23.6_rc1~17 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3fac667430341bdcec733da6eacd88b03813467a;p=psmisc testsuite: simplify DEJAGNU workaround The build system referenced a non-existent file. For some reason, it was never required except for a Debian mass-rebuild of all packages. The referenced commit is the same fix done for procps a while ago. References: https://gitlab.com/procps-ng/procps/-/commit/f0b7271810bc7ad7c7cb15cd590d954907c8c4f4 https://bugs.debian.org/1015098 Signed-off-by: Craig Small --- diff --git a/configure.ac b/configure.ac index 57c04f4..5a913d4 100644 --- a/configure.ac +++ b/configure.ac @@ -204,7 +204,7 @@ AC_SYS_LARGEFILE if test x"$DEJAGNU" = x then - DEJAGNU="\$(top_srcdir)/testsuite/global-conf.exp" + DEJAGNU="/dev/null" fi AC_SUBST(DEJAGNU)