summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorSylvain Henry <sylvain@haskus.fr>2020-12-14 13:32:45 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2020-12-17 13:58:30 -0500
commit659fcb14937e60510e3eea4c1211ea117419905b (patch)
treebdd0500b6c72f7fb5d03c97e8f955ac6e4d778eb /configure.ac
parentdf7c7faa9998f2b618eab586bb4420d6743aad18 (diff)
downloadhaskell-659fcb14937e60510e3eea4c1211ea117419905b.tar.gz
Fix project version for ProjectVersionMunged (fix #19058)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 0287d6743a..c9cf01e713 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13,7 +13,10 @@ dnl
# see what flags are available. (Better yet, read the documentation!)
#
-AC_INIT([The Glorious Glasgow Haskell Compilation System], [9.1.0], [glasgow-haskell-bugs@haskell.org], [ghc-AC_PACKAGE_VERSION])
+AC_INIT([The Glorious Glasgow Haskell Compilation System], [9.1], [glasgow-haskell-bugs@haskell.org], [ghc-AC_PACKAGE_VERSION])
+ # Version on HEAD must be X.Y (not X.Y.Z) for ProjectVersionMunged variable
+ # to be useful (cf #19058)
+
# Set this to YES for a released version, otherwise NO
: ${RELEASE=NO}