Fix GITPATCH computation
Since the introduction of the syntcomp2018-submission tag (on a separate branch), that computation of GITPATCH was based on this tag because it was the last one (even if it is not on next). We did not see it on the Debian packages, because they clone only one branch of the repository, but the RPM packages had a different GITPATCH. * configure.ac (GITPATCH): Compute the number of commits since the last "spot-*" tag.
This commit is contained in:
parent
0411099506
commit
0d2b8aacd1
1 changed files with 2 additions and 2 deletions
|
|
@ -202,8 +202,8 @@ AC_CHECK_PROGS([SWIG], [swig3.0 swig], [swig])
|
|||
AC_SUBST([CROSS_COMPILING], [$cross_compiling])
|
||||
|
||||
AC_SUBST([GITPATCH], [$(if (git rev-parse) >/dev/null 2>&1; then
|
||||
echo ".$(git rev-list $(git rev-list --tags --no-walk --max-count=1)..HEAD \
|
||||
--count)"
|
||||
echo ".$(git rev-list $(git rev-list --tags='spot-*' --no-walk \
|
||||
--max-count=1)..HEAD --count)"
|
||||
fi)])
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue