nano

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

commit c620fc6aa93d1d590d10b47de30060e80de56cc2
parent 7e09f2c64ad6552254aa3acc1c4d99f3a6859ef9
Author: Benno Schulenberg <bensberg@justemail.net>
Date:   Tue,  9 May 2017 20:23:04 +0200

build: use backticks to avoid a warning during autoreconf

Diffstat:
Msrc/Makefile.am | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Makefile.am b/src/Makefile.am @@ -4,7 +4,7 @@ AM_CPPFLAGS = -DLOCALEDIR=\"$(localedir)\" -DSYSCONFDIR=\"$(sysconfdir)\" \ CLEANFILES = revision.h if BUILDING_FROM_GIT -SOMETHING = "REVISION \"$(shell git describe --tags 2>/dev/null)\"" +SOMETHING = "REVISION \"`git describe --tags 2>/dev/null`\"" else SOMETHING = "NOTHING \"from tarball\"" endif