mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-14 14:53:03 +00:00
maint: enable gnits only at stable releases.
* configure.ac (AM_INIT_AUTOMAKE): Underscore or dash in a
version string should disable gnits. Explain in comments.
(cherry picked from commit 122ff44429)
Conflicts:
configure.ac
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
2010-07-29 Joel E. Denny <joeldenny@joeldenny.org>
|
||||||
|
|
||||||
|
maint: enable gnits only at stable releases.
|
||||||
|
* configure.ac (AM_INIT_AUTOMAKE): Underscore or dash in a
|
||||||
|
version string should disable gnits. Explain in comments.
|
||||||
|
|
||||||
2010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
|
2010-07-28 Joel E. Denny <joeldenny@joeldenny.org>
|
||||||
|
|
||||||
i18n: update.
|
i18n: update.
|
||||||
|
|||||||
12
configure.ac
12
configure.ac
@@ -37,11 +37,15 @@ AC_CONFIG_MACRO_DIR([m4])
|
|||||||
#
|
#
|
||||||
# To avoid 1.11, we make 1.11.1 the minimum version.
|
# To avoid 1.11, we make 1.11.1 the minimum version.
|
||||||
#
|
#
|
||||||
# We want gnits strictness only when rolling a formal release so that we can,
|
# We want gnits strictness only when rolling a stable release. For
|
||||||
# for example, run make dist at other times without being required to add a
|
# release candidates, we use version strings like 2.4.3_rc1, but gnits
|
||||||
# bogus NEWS entry.
|
# doesn't like that, so we let the underscore disable gnits. Between
|
||||||
|
# releases, we want to be able run make dist without being required to
|
||||||
|
# add a bogus NEWS entry. In that case, the version string
|
||||||
|
# automatically contains a dash, which we also let disable gnits.
|
||||||
AM_INIT_AUTOMAKE([1.11.1 dist-bzip2]
|
AM_INIT_AUTOMAKE([1.11.1 dist-bzip2]
|
||||||
m4_bmatch(m4_defn([AC_PACKAGE_VERSION]), [-], [gnu], [gnits]))
|
m4_bmatch(m4_defn([AC_PACKAGE_VERSION]), [[-_]],
|
||||||
|
[gnu], [gnits]))
|
||||||
AC_CONFIG_HEADERS([lib/config.h:lib/config.hin])
|
AC_CONFIG_HEADERS([lib/config.h:lib/config.hin])
|
||||||
|
|
||||||
# Checks for the compiler.
|
# Checks for the compiler.
|
||||||
|
|||||||
Reference in New Issue
Block a user