X-Git-Url: https://jfr.im/git/solanum.git/blobdiff_plain/b5e4f3962596cada703ab5365bda498e6da85100..cdf5ed6cc86b5a535195b36977de47bb1e1967f2:/Makefile.am diff --git a/Makefile.am b/Makefile.am index ec6da0d6..34e15287 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,7 +1,7 @@ AUTOMAKE_OPTIONS = foreign ACLOCAL_AMFLAGS = -I m4 -SUBDIRS = libratbox +SUBDIRS = librb if BUILD_LTDL SUBDIRS += libltdl @@ -22,14 +22,18 @@ logdir = @prefix@/logs BUILT_SOURCES = include/serno.h include/serno.h: - @if [ -d .git ] ; then \ - revh=`git log -1 --date=short --pretty=format:%cd_%h 2>/dev/null | sed -e s/-//g -e s/_/-/`;\ - [ -z "$$revh" ] || echo '#define SERNO "'$$revh'"' >include/serno.h ; \ - elif [ -d .hg ] ; then \ - revh=`hg parents --template '{date|shortdate}_{node|short}' 2>/dev/null | sed -e s/-//g -e s/_/-/`;\ - [ -z "$$revh" ] || echo '#define SERNO "'$$revh'"' >include/serno.h ; \ + @if [ -d .git ]; then \ + revh=`git log -1 --date=format:%Y%m%d --pretty=format:%cd-%h`; \ + datecode=`git log -1 --pretty=format:%ct`; \ + if [ -n "$$revh" ]; then \ + echo '#define SERNO "'$$revh'"' >include/serno.h ; \ + echo "#define DATECODE $${datecode}UL" >>include/serno.h; \ + fi \ + fi + @if [ ! -f include/serno.h ]; then \ + echo '#define SERNO "unknown"' >include/serno.h; \ + echo '#define DATECODE 0UL' >>include/serno.h; \ fi - @[ -f include/serno.h ] || echo '#define SERNO "unknown"' >include/serno.h install-data-hook: - test -d ${logdir} || mkdir -p ${logdir} + test -d ${DESTDIR}${logdir} || mkdir -p ${DESTDIR}${logdir}