Commit 76fb3ecc authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

automatically install a symlink "rnano" pointing to nano

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1878 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent b8c479a9
Showing with 9 additions and 0 deletions
+9 -0
...@@ -67,6 +67,8 @@ CVS code - ...@@ -67,6 +67,8 @@ CVS code -
newline. (DLR) newline. (DLR)
- Don't treat the return value of strn?(case)?cmp() as boolean. - Don't treat the return value of strn?(case)?cmp() as boolean.
(DLR and David Benbennick) (DLR and David Benbennick)
- Automatically install a symlink "rnano" pointing to nano.
Changes to src/Marefile.am. (DLR)
- files.c: - files.c:
close_open_file() close_open_file()
- Tweak to no longer rely on the return values of - Tweak to no longer rely on the return values of
...@@ -196,6 +198,9 @@ CVS code - ...@@ -196,6 +198,9 @@ CVS code -
value can't be larger than COLS. (DLR) value can't be larger than COLS. (DLR)
- Allow the user to exit the help browser via Ctrl-C as well as - Allow the user to exit the help browser via Ctrl-C as well as
Ctrl-X, for consistency with the file browser. (DLR) Ctrl-X, for consistency with the file browser. (DLR)
- configure.ac:
- Add AC_PROG_LN_S, so that we can portably create symlinks.
(DLR)
- nanorc.sample: - nanorc.sample:
- Add sample regexes for patch files. (Mike Frysinger) - Add sample regexes for patch files. (Mike Frysinger)
- Various improvements to the "c-file" regexes. Add double, - Various improvements to the "c-file" regexes. Add double,
......
...@@ -29,6 +29,7 @@ AC_PREREQ(2.54) ...@@ -29,6 +29,7 @@ AC_PREREQ(2.54)
dnl Checks for programs. dnl Checks for programs.
AC_GNU_SOURCE AC_GNU_SOURCE
AC_PROG_CC AC_PROG_CC
AC_PROG_LN_S
AC_ISC_POSIX AC_ISC_POSIX
AC_SYS_LARGEFILE AC_SYS_LARGEFILE
......
...@@ -19,3 +19,6 @@ nano_SOURCES = color.c \ ...@@ -19,3 +19,6 @@ nano_SOURCES = color.c \
winio.c winio.c
nano_LDADD = @GLIB_LIBS@ @LIBINTL@ nano_LDADD = @GLIB_LIBS@ @LIBINTL@
install-exec-hook:
cd $(DESTDIR)$(bindir) && $(LN_S) nano rnano
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment