Fix include/serno.h generation.

Apparently #value# is no longer special in hg templates.
This commit is contained in:
Jilles Tjoelker 2010-01-22 01:41:48 +01:00
parent 8b4cf5c15b
commit a7b9067e0f
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ if [ "x$TIP" = "x" ]; then
fi
# Charybdis wants the hg tip to be in include/serno.h, in its own format.
MYTIP=`hg parents --template '#date|shortdate#_#node|short#' 2>/dev/null | sed -e s/-//g -e s/_/-/`
MYTIP=`hg parents --template '{date|shortdate}_{node|short}' 2>/dev/null | sed -e s/-//g -e s/_/-/`
echo "[charybdis] Generating include/serno.h for tip $MYTIP."
cat << _EOF_ > include/serno.h
/* Generated automatically by makepackage. Any changes made here will be lost. */

View File

@ -30,7 +30,7 @@ if [ "x$2" = "x--automatic" ]; then
AUTOMATIC="yes"
fi
TIP=`hg tip --template "#rev#:#node|short#"`
TIP=`hg parents --template "{rev}:{node|short}"`
WRKDIR=`pwd`