On Tue, Feb 09, 2016 at 06:19:29PM +0100, Ruediger Meier wrote: > 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]) UL_CHECK_SYSCALL function should not contain AM_CONDITIONAL, it's unnecessary. We need only BUILD_ conditionals and HAVE_ for libs. I'll fix it. Karel -- Karel Zak <kzak@xxxxxxxxxx> http://karelzak.blogspot.com -- 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