summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2021-01-17 11:26:01 -0500
committerMarge Bot <ben+marge-bot@smart-cactus.org>2021-01-30 14:12:24 -0500
commit621d8cf7fe0bbfa8893dc739120c7f3b12a6f472 (patch)
tree7b17a022020247d5119504b6268294c2d77609aa
parentf5d62eb2d5a1058f355aaa1fd0a959694d160ec4 (diff)
downloadhaskell-621d8cf7fe0bbfa8893dc739120c7f3b12a6f472.tar.gz
configure: Break up AC_CONFIG_FILES list
-rw-r--r--configure.ac33
1 files changed, 32 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index f77c89f271..1ec0a6f621 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1489,7 +1489,38 @@ checkMake380() {
checkMake380 make
checkMake380 gmake
-AC_CONFIG_FILES([mk/config.mk mk/install.mk mk/project.mk rts/rts.cabal compiler/ghc.cabal ghc/ghc-bin.cabal utils/iserv/iserv.cabal utils/iserv-proxy/iserv-proxy.cabal utils/remote-iserv/remote-iserv.cabal utils/runghc/runghc.cabal utils/gen-dll/gen-dll.cabal libraries/ghc-boot/ghc-boot.cabal libraries/ghc-boot-th/ghc-boot-th.cabal libraries/ghci/ghci.cabal libraries/ghc-heap/ghc-heap.cabal libraries/libiserv/libiserv.cabal libraries/template-haskell/template-haskell.cabal docs/users_guide/ghc_config.py docs/index.html libraries/prologue.txt distrib/configure.ac])
+dnl Things specific to the make build system
+AC_CONFIG_FILES(
+[
+ mk/config.mk
+ mk/install.mk
+ mk/project.mk
+])
+
+dnl When adding things to this list be sure to update hadrian's
+dnl Rules.Configure.configureResults list.
+AC_CONFIG_FILES(
+[
+ rts/rts.cabal
+ compiler/ghc.cabal
+ ghc/ghc-bin.cabal
+ utils/runghc/runghc.cabal
+ utils/iserv/iserv.cabal
+ utils/iserv-proxy/iserv-proxy.cabal
+ utils/remote-iserv/remote-iserv.cabal
+ utils/gen-dll/gen-dll.cabal
+ libraries/ghc-boot/ghc-boot.cabal
+ libraries/ghc-boot-th/ghc-boot-th.cabal
+ libraries/ghci/ghci.cabal
+ libraries/ghc-heap/ghc-heap.cabal
+ libraries/libiserv/libiserv.cabal
+ libraries/template-haskell/template-haskell.cabal
+ docs/users_guide/ghc_config.py
+ docs/index.html
+ libraries/prologue.txt
+ distrib/configure.ac
+])
+
AC_OUTPUT
[
if test "$print_make_warning" = "true"; then