Skip to content
Snippets Groups Projects
Commit fc868e2f authored by Julien Signoles's avatar Julien Signoles
Browse files

[configure] fix test of Frama-C version

parent bf906c55
No related branches found
No related tags found
No related merge requests found
......@@ -68,8 +68,10 @@ case $FRAMAC_VERSION in
AC_MSG_ERROR(Frama-C version must be at least \
$REQUIRED_NAME-$REQUIRED_NUMBER.)
else
AC_MSG_WARN(Frama-C version is more recent than $REQUIRED_NAME: \
if test $VERSION_NUMBER -gt $REQUIRED_NUMBER; then
AC_MSG_WARN(Frama-C version is more recent than $REQUIRED_NAME: \
use it at your own risk)
fi
fi;;
esac
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment