diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2021-02-18 10:09:55 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-02-28 05:37:52 -0500 |
commit | 0f2891f01854b36ae190ccb2565f6ff9876b74c0 (patch) | |
tree | e0fe6936a8c9d90a575cca197984e2d1eb855af2 /configure.ac | |
parent | a34733239fbd2029f91924f60309e947b02d2a68 (diff) | |
download | haskell-0f2891f01854b36ae190ccb2565f6ff9876b74c0.tar.gz |
configure: avoid empty lines in AC_CONFIG_FILES
Should fix failures on Windows:
configure.ac:1511: error: `
' is already registered with AC_CONFIG_FILES.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index f3b176ad2d..9fdb312f97 100644 --- a/configure.ac +++ b/configure.ac @@ -1500,8 +1500,7 @@ checkMake380 gmake dnl Things specific to the make build system AC_CONFIG_FILES( -[ - mk/config.mk +[ mk/config.mk mk/install.mk mk/project.mk ]) @@ -1509,8 +1508,7 @@ AC_CONFIG_FILES( dnl When adding things to this list be sure to update hadrian's dnl Rules.Configure.configureResults list. AC_CONFIG_FILES( -[ - rts/rts.cabal +[ rts/rts.cabal compiler/ghc.cabal ghc/ghc-bin.cabal utils/runghc/runghc.cabal |