Browse Source

nano: enable line numbers (from cmdline)

Enable showing line numbers, which makes it easier to find
the correct place in long files. Due to the "tiny" build,
the functionality is only available from cmdline with "-l"
option.
For example:  nano -l /etc/banner

Key shortcut M-n is disabled due to "tiny".
See https://savannah.gnu.org/bugs/?61441 for explanation.

Also
* remove without-slang config option, deprecated in Dec 2020
* adopt AUTORELEASE

Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
lilik-openwrt-22.03
Hannu Nyman 3 years ago
parent
commit
ae7f62d637
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      utils/nano/Makefile

+ 2
- 2
utils/nano/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=nano PKG_NAME:=nano
PKG_VERSION:=5.9 PKG_VERSION:=5.9
PKG_RELEASE:=1
PKG_RELEASE:=$(AUTORELEASE)
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
PKG_SOURCE_URL:=@GNU/nano PKG_SOURCE_URL:=@GNU/nano
@ -42,8 +42,8 @@ endef
CONFIGURE_ARGS += \ CONFIGURE_ARGS += \
--enable-tiny \ --enable-tiny \
--disable-utf8 \ --disable-utf8 \
--without-slang \
--disable-color \ --disable-color \
--enable-linenumbers
CONFIGURE_VARS += \ CONFIGURE_VARS += \
ac_cv_header_regex_h=no \ ac_cv_header_regex_h=no \


Loading…
Cancel
Save