Skip to content
Snippets Groups Projects
Commit a8ac44b6 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

Using the real version name instead of the last tag name

parent 9d8b5196
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ OPUS_EXTRA_VERSION=
OPUS_VERSION="$OPUS_MAJOR_VERSION.$OPUS_MINOR_VERSION.$OPUS_MICRO_VERSION$OPUS_EXTRA_VERSION"
AC_MSG_CHECKING([git revision])
GIT_VERSION=$(git describe --tags 2>/dev/null)
GIT_VERSION=$(git describe --tags --match 'v*' 2>/dev/null | sed 's/^v//')
if test -z "$GIT_VERSION"; then
AC_MSG_RESULT([no])
else
......
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