mirror of
https://github.com/FRRouting/frr.git
synced 2025-04-30 13:37:17 +02:00
*: ignore deprecated code statments in release versions
by setting CONFDATE to 0 Signed-off-by: Lou Berger <lberger@labn.net>
This commit is contained in:
parent
11acdeacaf
commit
5e2dd3fa5d
|
@ -1818,7 +1818,13 @@ AM_CONDITIONAL([ZEROMQ], test "x$ZEROMQ" = "xtrue")
|
|||
dnl ----------
|
||||
dnl configure date
|
||||
dnl ----------
|
||||
CONFDATE=`date '+%Y%m%d'`
|
||||
dev_version=`echo $VERSION | grep dev`
|
||||
#don't expire deprecated code in non 'dev' branch
|
||||
if test "${dev_version}" = ""; then
|
||||
CONFDATE=0
|
||||
else
|
||||
CONFDATE=`date '+%Y%m%d'`
|
||||
fi
|
||||
AC_SUBST(CONFDATE)
|
||||
|
||||
dnl ------------------------------
|
||||
|
|
Loading…
Reference in a new issue