Hello, Karel Zak, le mer. 11 déc. 2019 11:18:31 +0100, a ecrit: > The util-linux release v2.35-rc1 is available at > > http://www.kernel.org/pub/linux/utils/util-linux/v2.35 > > Feedback and bug reports, as always, are welcomed. scriptlive is made conditional on pty support, but was still hardcoded as [yes], the attached patch makes it [check] like all others having such kind of condition. Samuel
diff --git a/configure.ac b/configure.ac index 40352a0fb..c187927e1 100644 --- a/configure.ac +++ b/configure.ac @@ -1845,7 +1845,7 @@ AM_CONDITIONAL([BUILD_SCRIPT], [test "x$build_script" = xyes]) UL_BUILD_INIT([scriptreplay], [yes]) AM_CONDITIONAL([BUILD_SCRIPTREPLAY], [test "x$build_scriptreplay" = xyes]) -UL_BUILD_INIT([scriptlive], [yes]) +UL_BUILD_INIT([scriptlive], [check]) UL_REQUIRES_HAVE([scriptlive], [pty]) AM_CONDITIONAL([BUILD_SCRIPTLIVE], [test "x$build_scriptlive" = xyes])