[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: fix an error message during configure
From: |
Patrice Dumas |
Subject: |
Re: fix an error message during configure |
Date: |
Sat, 10 Aug 2024 18:03:01 +0200 |
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
>
>
> Bruno
>
> [1]
> https://www.gnu.org/software/gnulib/manual/html_node/gettextize-and-autopoint.html
>
>
>
>
- fix an error message during configure, Bruno Haible, 2024/08/06
- Re: fix an error message during configure, Gavin Smith, 2024/08/06
- Re: fix an error message during configure, Bruno Haible, 2024/08/06
- Re: fix an error message during configure, Gavin Smith, 2024/08/07
- Re: fix an error message during configure, Bruno Haible, 2024/08/07
- Re: fix an error message during configure,
Patrice Dumas <=
- Re: fix an error message during configure, Bruno Haible, 2024/08/12
- Re: fix an error message during configure, Gavin Smith, 2024/08/13
- Re: fix an error message during configure, Bruno Haible, 2024/08/13
- Re: fix an error message during configure, Gavin Smith, 2024/08/14
- Re: fix an error message during configure, Bruno Haible, 2024/08/14
- Re: fix an error message during configure, Gavin Smith, 2024/08/15
- Re: fix an error message during configure, Bruno Haible, 2024/08/16
- Re: fix an error message during configure, Gavin Smith, 2024/08/17
- Re: fix an error message during configure, Gavin Smith, 2024/08/13
Re: fix an error message during configure, Gavin Smith, 2024/08/31