search for: gitrev

Displaying 1 result from an estimated 1 matches for "gitrev".

Did you mean: bitrev
2013 Nov 04
1
Makefile fix for tarball compilation
...so far without CGI and some drivers) seems to succeed. ################### --- include/Makefile.orig Mon Nov 4 13:12:39 2013 +++ include/Makefile Mon Nov 4 13:23:02 2013 @@ -473,9 +473,11 @@ # magic to include SVN revision number in NUT version string nut_version.h: FORCE - @GITREV=`git describe --tags 2>/dev/null | sed 's/^v\([0-9]\)/\1/' `; \ + @GITREV=`git describe --tags 2>/dev/null | sed 's/^v\([0-9]\)/\1/' ` || \ + GITREV=""; \ if [ -z "$$GITREV" ]; \ - then SVNREV=`LANG=C svnversion...