nano

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

commit bbdbf4586fafdba8d055a676438c874631e229de
parent af5010c96f5dfa0014e906e0157388887fac1429
Author: Benno Schulenberg <bensberg@telfort.nl>
Date:   Sun, 19 Apr 2020 19:09:32 +0200

build: make ./configure report which global nanorc file will be used

This addresses https://savannah.gnu.org/bugs/?57061.
Requested-by: Robert Johnson <aloha@blastpuppy.com>

Diffstat:
MMakefile.am | 6++++++
Mconfigure.ac | 4+++-
2 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/Makefile.am b/Makefile.am @@ -10,3 +10,9 @@ EXTRA_DIST = ChangeLog.1999-2006 ChangeLog.2007-2015 \ IMPROVEMENTS README.GIT ACLOCAL_AMFLAGS = -I m4 + +showinfo: + @ echo + @ echo " The global nanorc file is: @sysconfdir@/nanorc" + @ echo " Syntaxes get installed in: @PKGDATADIR@/" + @ echo diff --git a/configure.ac b/configure.ac @@ -596,7 +596,7 @@ if eval "test x$CURSES_LIB_NAME = x"; then *** from libncursesw5-dev (Debian), ncurses-devel (Fedora), or similar. *** (Or install ncurses from https://ftp.gnu.org/gnu/ncurses/.)]) else - AC_MSG_RESULT([Using $CURSES_LIB_NAME as the curses library]) + AC_MSG_RESULT([ The curses library to be used is: $CURSES_LIB_NAME]) fi AC_CHECK_LIB([$CURSES_LIB_NAME], [use_default_colors], @@ -741,3 +741,5 @@ syntax/Makefile ]) AC_OUTPUT + +make showinfo