[Git][ghc/ghc][wip/T22322] configure: Always create the VERSION file

Ben Gamari (@bgamari) gitlab at gitlab.haskell.org
Wed Jan 25 21:36:19 UTC 2023



Ben Gamari pushed to branch wip/T22322 at Glasgow Haskell Compiler / GHC


Commits:
a0b1b240 by Ben Gamari at 2023-01-25T16:36:11-05:00
configure: Always create the VERSION file

This will serve as the stable interface to allow the user to determine
the version number of a working tree.

Fixes #22322.

- - - - -


2 changed files:

- configure.ac
- hadrian/src/Rules/SourceDist.hs


Changes:

=====================================
configure.ac
=====================================
@@ -1214,6 +1214,9 @@ AC_CONFIG_FILES(
   distrib/configure.ac
 ])
 
+dnl Create the VERSION file, satisfying #22322.
+printf "$ProjectVersion" > VERSION
+
 AC_OUTPUT
 [
 if test "$print_make_warning" = "true"; then


=====================================
hadrian/src/Rules/SourceDist.hs
=====================================
@@ -29,8 +29,6 @@ sourceDistRules = alternatives $ do
       archiveSourceTree prepareTree
     "GIT_COMMIT_ID" %> \fname ->
         writeFileChanged fname =<< setting ProjectGitCommitId
-    "VERSION" %> \fname ->
-        writeFileChanged fname =<< setting ProjectVersion
 
     -- Rules to download mingw tarballs
     let mingw_tarballs_stamp = "ghc-tarballs/mingw-w64/.mingw-w64.download.stamp"
@@ -120,7 +118,6 @@ prepareTree dest = do
     out <- askWithResources [] (target (vanillaContext Stage1 compiler) (Git ListFiles) [] [])
     top <- topDirectory
     let files = ["GIT_COMMIT_ID", "VERSION"] ++ getFiles out
-    need ["GIT_COMMIT_ID", "VERSION"]
     forM_ files $ \source -> do
       let target = dest -/- source
       copyFileSourceDist (top -/- source) target



View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/a0b1b240175af54012bdcf7f42303fa288157ae4

-- 
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/a0b1b240175af54012bdcf7f42303fa288157ae4
You're receiving this email because of your account on gitlab.haskell.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20230125/cf2719c8/attachment-0001.html>


More information about the ghc-commits mailing list