diff options
author | Austin Seipp <aseipp@pobox.com> | 2013-08-13 16:34:02 -0500 |
---|---|---|
committer | Austin Seipp <aseipp@pobox.com> | 2013-08-14 00:42:37 -0500 |
commit | 5fb72555f7b7ab67a33583f33ad9160761ca434f (patch) | |
tree | db368df2a339957be581ad177cbbbd9a027de865 /ghc.mk | |
parent | a27895b359db20197d9ec72b03c4e304a20585d8 (diff) | |
download | haskell-5fb72555f7b7ab67a33583f33ad9160761ca434f.tar.gz |
Fix Stage1Only: don't build ghctags.
ghctags needs the stage2 compiler, since it uses the GHC API.
Fixes #8126.
Authored-by: Stephen Blackheath <...@blacksapphire.com>
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'ghc.mk')
-rw-r--r-- | ghc.mk | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -658,7 +658,9 @@ BUILD_DIRS += compiler BUILD_DIRS += utils/hsc2hs BUILD_DIRS += utils/ghc-pkg BUILD_DIRS += utils/testremove +ifeq "$(Stage1Only)" "NO" BUILD_DIRS += utils/ghctags +endif BUILD_DIRS += utils/dll-split BUILD_DIRS += utils/ghc-pwd BUILD_DIRS += utils/ghc-cabal |