diff options
author | Ben Gamari <ben@smart-cactus.org> | 2023-02-14 12:02:25 -0500 |
---|---|---|
committer | Ben Gamari <ben@smart-cactus.org> | 2023-02-22 16:17:00 -0500 |
commit | f8876261abebbbac2454e2335f728916ba7c959b (patch) | |
tree | 72eb6344bdae9ee7343bda9917cd6e0ca2f2d73d | |
parent | f11d9c274d728696bc173c62a2ead62b8288836f (diff) | |
download | haskell-f8876261abebbbac2454e2335f728916ba7c959b.tar.gz |
hadrian: Add dependency from lib/settings to mk/config.mkwip/T22982
In 81975ef375de07a0ea5a69596b2077d7f5959182 we attempted to fix #20253
by adding logic to the bindist Makefile to regenerate the `settings`
file from information gleaned by the bindist `configure` script.
However, this fix had no effect as `lib/settings` is shipped in the
binary distribution (to allow in-place use of the binary distribution).
As `lib/settings` already existed and its rule declared no dependencies,
`make` would fail to use the added rule to regenerate it.
Fix this by explicitly declaring a dependency from `lib/settings` on
`mk/config.mk`.
Fixes #22982.
-rw-r--r-- | hadrian/bindist/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hadrian/bindist/Makefile b/hadrian/bindist/Makefile index 2b0903796e..f36ffa57c0 100644 --- a/hadrian/bindist/Makefile +++ b/hadrian/bindist/Makefile @@ -77,7 +77,7 @@ endif WrapperBinsDir=${bindir} # N.B. this is duplicated from includes/ghc.mk. -lib/settings : +lib/settings : config.mk $(call removeFiles,$@) @echo '[("GCC extra via C opts", "$(GccExtraViaCOpts)")' >> $@ @echo ',("C compiler command", "$(SettingsCCompilerCommand)")' >> $@ |