On Sat, Aug 10, 2024 at 06:03:01PM +0200, Patrice Dumas wrote: > Hello, > > The './autogen.sh' step in opencsw fails: > https://buildfarm.opencsw.org/buildbot/waterfall?category=texinfo > > It fails since commit > https://git.savannah.gnu.org/cgit/texinfo.git/commit/?id=d695e0fbef88a285884ccd1f1661d13b75013a39 > > I think that it is because options like --install are missing. I think > that doing what Bruno proposes below would fix this issue and is easier > to maintain: > > On Thu, Aug 08, 2024 at 12:24:18AM +0200, Bruno Haible wrote: > > Oh, this problem again. The common workaround is to tell autoreconf > > not to run 'autopoint' [1]: > > > > diff --git a/autogen.sh b/autogen.sh > > index 718100fa77..f1d3449aac 100755 > > --- a/autogen.sh > > +++ b/autogen.sh > > @@ -48,7 +48,7 @@ $chicken eval $cmd "$@" || exit 1 > > > > : ${LIBTOOLIZE=libtoolize} > > cmd="(cd tp/Texinfo/XS && ${LIBTOOLIZE} \ > > - && autoreconf --force --verbose --install)" > > + && AUTOPOINT=true autoreconf --force --verbose --install)" > > echo " $cmd" > > $chicken eval $cmd || exit 1 > > > >
Done.