On Tuesday 09 February 2016, J William Piggott wrote: > commit 15167589fb40be9479e1afe261bea0bf23b33a83 causing single > builds (other than chrt) to fail: > > ./configure --disable-all-programs --enable-hwclock > > conditional \"HAVE_SCHED_SETATTR\" was never defined. > Usually this means the macro was only invoked conditionally. I have fixed it for me like this, quick and dirty: diff --git a/configure.ac b/configure.ac index 4559573..cc9eb55 100644 --- a/configure.ac +++ b/configure.ac @@ -1774,9 +1774,7 @@ UL_BUILD_INIT([chrt], [check]) UL_REQUIRES_BUILD([chrt], [schedutils]) AM_CONDITIONAL([BUILD_CHRT], [test "x$build_chrt" = xyes]) -AS_IF([test "x$build_chrt" = xyes], [ - UL_CHECK_SYSCALL([sched_setattr]) -]) +UL_CHECK_SYSCALL([sched_setattr]) AC_ARG_ENABLE([wall], cu, Rudi -- To unsubscribe from this list: send the line "unsubscribe util-linux" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html