nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 7d8f13b9f760eb35cae70457d4e726440fdc1dfd
parent ec177c84b3c074de1f1e6a0c86ec56add426f16b
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Mon, 17 Jun 2024 09:57:45 +0200

build: use the standard `autoreconf` invocation

As version 0.20 of `autopoint` no longer overwrites 'extern-inline.m4',
there is no need any more for the custom calls of the various parts of
`autoreconf`.

This effectively reverts commit 4a1db96d from two and a half years ago.

Diffstat:
Mautogen.sh | 13++-----------
1 file changed, 2 insertions(+), 11 deletions(-)

diff --git a/autogen.sh b/autogen.sh @@ -43,20 +43,11 @@ if [ "${gnulib_hash}" != "${curr_hash}" ]; then fi cd .. >/dev/null || exit 1 -echo "Autopoint..." -autopoint --force - rm -rf lib echo "Gnulib-tool..." ./gnulib/gnulib-tool --import ${modules} echo -echo "Aclocal..." -aclocal -I m4 -echo "Autoconf..." -autoconf -echo "Autoheader..." -autoheader -echo "Automake..." -automake --add-missing +echo "Autoreconf..." +autoreconf --install --symlink --force echo "Done."