1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 11:40:18 +02:00

fix git-version-gen to work with bsd sed and obsolete regexps

* configure.ac: Avoid + in git-version-gen sed script, as it doesn't
  work on BSD sed with obsolete regexps.
This commit is contained in:
Andy Wingo 2010-07-21 12:15:50 +02:00
parent 0b7f2eb8bf
commit 12427934de

View file

@ -30,7 +30,7 @@ AC_PREREQ(2.61)
AC_INIT([GNU Guile],
m4_esyscmd([build-aux/git-version-gen \
.tarball-version \
's/^release_\([0-9]\+\)-\([0-9]\+\)-\([0-9]\+\)/v\1.\2\.\3/g']),
's/^release_\([0-9][0-9]*\)-\([0-9][0-9]*\)-\([0-9][0-9]*\)/v\1.\2\.\3/g']),
[bug-guile@gnu.org])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])