nano

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

commit 4868f83874ac1bf6577acce44fcf4ba40da90049
parent 607b226e4ea1e9c5b9622b29ad01e179aa773194
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Fri, 27 Jun 2014 20:35:37 +0000

Silencing a useless warning about seemingly ignoring a datarootdir setting.


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@5027 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
MChangeLog | 1+
Mconfigure.ac | 4++++
2 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/ChangeLog b/ChangeLog @@ -16,6 +16,7 @@ * src/winio.c: Normalize some whitespace. * Makefile.am, nano.spec.in: Stop distributing the BUGS file. * BUGS: Remove obsolete file; bugs are tracked on Savannah nowadays. + * configure.ac: Silence a useless warning about ignoring datarootdir. 2014-06-25 Benno Schulenberg <bensberg@justemail.net> * src/browser.c (do_browser): Allow 'firstfile' and 'lastfile' to be diff --git a/configure.ac b/configure.ac @@ -26,6 +26,10 @@ AC_CANONICAL_HOST AM_INIT_AUTOMAKE AC_CONFIG_HEADERS([config.h]) +dnl Silence a pointless warning from the gettext Makefile. + +AC_DEFUN([AC_DATAROOTDIR_CHECKED]) + dnl Make sure the ONCE macros are available. AC_PREREQ(2.61)