summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorBen Gamari <bgamari.foss@gmail.com>2016-03-11 10:39:20 +0100
committerBen Gamari <ben@smart-cactus.org>2016-03-11 13:20:17 +0100
commita74a3846c84ad55de3deeed8b2401a2ed514b2e1 (patch)
tree8a08ee4a2cdcc56e8b48b63e20659545f1351355 /configure.ac
parent767ff7cab7fc2d27b66cdd25d551ccf9e9e7c51d (diff)
downloadhaskell-a74a3846c84ad55de3deeed8b2401a2ed514b2e1.tar.gz
Include version in AC_PACKAGE_TARNAME
`AC_PACKAGE_TARNAME` is used by autoconf to generate the default value of docdir, which we now set to include a version number (see #11354). This fixed #11659. Test Plan: `./configure --help`, validate Reviewers: austin, thomie, hvr, erikd Reviewed By: hvr, erikd Subscribers: erikd Differential Revision: https://phabricator.haskell.org/D1983 GHC Trac Issues: #11659
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index adc22dd019..dbc19de80e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -13,7 +13,7 @@ dnl
# see what flags are available. (Better yet, read the documentation!)
#
-AC_INIT([The Glorious Glasgow Haskell Compilation System], [8.1], [glasgow-haskell-bugs@haskell.org], [ghc])
+AC_INIT([The Glorious Glasgow Haskell Compilation System], [8.1], [glasgow-haskell-bugs@haskell.org], [ghc-AC_PACKAGE_VERSION])
# Set this to YES for a released version, otherwise NO
: ${RELEASE=NO}