0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-17 10:23:46 +02:00

Makefile.am: make git serno generation a little nicer.

This commit is contained in:
Elizabeth Myers 2016-03-07 05:15:35 -06:00
parent 638d286293
commit 34dbd2d49b
3 changed files with 3 additions and 3 deletions

View file

@ -23,7 +23,7 @@ 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/_/-/`;\
revh=`git log -1 --date=format:%Y%m%d --pretty=format:%cd-%h`;\
[ -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/_/-/`;\

View file

@ -577,7 +577,7 @@ AC_HELP_STRING([--with-topiclen=NUMBER],[Set the max topic length to NUMBER (def
AC_DEFINE_UNQUOTED(TOPICLEN, ${TOPICLEN}, [Maximum topic length (<=390)])
AC_DEFINE_UNQUOTED(NICKLEN, (${NICKLEN}+1), [Nickname length])
# rpath, for finding libratbox.so at run time
# rpath, for finding librb.so at run time
hold_ldflags=$LDFLAGS
AC_MSG_CHECKING(for the ld -rpath flag)
LDFLAGS="${LDFLAGS} -Wl,-rpath=${libdir}"

View file

@ -9,7 +9,7 @@ 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/_/-/`;\
revh=`git log -1 --date=format:%Y%m%d --pretty=format:%cd-%h`;\
[ -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/_/-/`;\