nano

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

commit 129696cdbeaa9d1540bd463d1283af4ae2481428
parent 8cc3ab213d0e58d9306c825bb697ab057d4b5fe3
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sun, 10 Dec 2023 10:48:08 +0100

gnulib: update to current upstream state, to make a fresh checkout work

Also, increase the checkout depth, so that it will work for longer.

Indirectly-reported-by: Jacob Lifshay <programmerjake@gmail.com>

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

diff --git a/autogen.sh b/autogen.sh @@ -2,7 +2,7 @@ # Generate configure & friends for GIT users. gnulib_url="git://git.sv.gnu.org/gnulib.git" -gnulib_hash="2cf7f442f52f70b3df6eb396eb93ea08e54883c5" +gnulib_hash="a007cf68f0ee224d1d88cd6907f5dbea0ad5c149" modules=" futimens @@ -31,7 +31,7 @@ modules=" # Make sure the local gnulib git repo is up-to-date. if [ ! -d "gnulib" ]; then - git clone --depth=1111 ${gnulib_url} + git clone --depth=2222 ${gnulib_url} fi cd gnulib >/dev/null || exit 1 curr_hash=$(git log -1 --format=%H)