diff options
author | Takenobu Tani <takenobu.hs@gmail.com> | 2019-03-21 16:06:39 +0900 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-03-25 14:02:29 -0400 |
commit | 3769e3a829f4514f82ce7f7d218867f1d69d3d38 (patch) | |
tree | fdb7a6352c32368f1d80e370c46fe4159507ec4f /ghc.mk | |
parent | 8e07368faf5090a5ac803f0e4fa3a5a2a4aba05c (diff) | |
download | haskell-3769e3a829f4514f82ce7f7d218867f1d69d3d38.tar.gz |
Update Wiki URLs to point to GitLab
This moves all URL references to Trac Wiki to their corresponding
GitLab counterparts.
This substitution is classified as follows:
1. Automated substitution using sed with Ben's mapping rule [1]
Old: ghc.haskell.org/trac/ghc/wiki/XxxYyy...
New: gitlab.haskell.org/ghc/ghc/wikis/xxx-yyy...
2. Manual substitution for URLs containing `#` index
Old: ghc.haskell.org/trac/ghc/wiki/XxxYyy...#Zzz
New: gitlab.haskell.org/ghc/ghc/wikis/xxx-yyy...#zzz
3. Manual substitution for strings starting with `Commentary`
Old: Commentary/XxxYyy...
New: commentary/xxx-yyy...
See also !539
[1]: https://gitlab.haskell.org/bgamari/gitlab-migration/blob/master/wiki-mapping.json
Diffstat (limited to 'ghc.mk')
-rw-r--r-- | ghc.mk | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -5,8 +5,8 @@ # This file is part of the GHC build system. # # To understand how the build system works and how to modify it, see -# http://ghc.haskell.org/trac/ghc/wiki/Building/Architecture -# http://ghc.haskell.org/trac/ghc/wiki/Building/Modifying +# https://gitlab.haskell.org/ghc/ghc/wikis/building/architecture +# https://gitlab.haskell.org/ghc/ghc/wikis/building/modifying # # ----------------------------------------------------------------------------- @@ -40,7 +40,7 @@ # # The actual build order is defined by dependencies, and the phase # ordering used to ensure correct ordering of makefile-generation; see -# http://ghc.haskell.org/trac/ghc/wiki/Building/Architecture/Idiom/PhaseOrdering +# https://gitlab.haskell.org/ghc/ghc/wikis/building/architecture/idiom/phase-ordering # # * With bootstrapping compiler: # o Build utils/ghc-cabal @@ -97,7 +97,7 @@ endif ifeq "$(MAKE_RESTARTS)" "" else ifeq "$(MAKE_RESTARTS)" "1" else -$(error Make has restarted itself $(MAKE_RESTARTS) times; is there a makefile bug? See http://ghc.haskell.org/trac/ghc/wiki/Building/Troubleshooting#Makehasrestarteditself3timesisthereamakefilebug for details) +$(error Make has restarted itself $(MAKE_RESTARTS) times; is there a makefile bug? See https://gitlab.haskell.org/ghc/ghc/wikis/building/troubleshooting#make-has-restarted-itself-3-times-is-there-a-makefile-bug for details) endif # ----------------------------------------------------------------------------- @@ -175,7 +175,7 @@ ifeq "$(SPHINXBUILD)" "" $(error BUILD_SPHINX_HTML=YES, but `sphinx-build` was not found. \ Create a file `mk/validate.mk` containing `BUILD_SPHINX_HTML=NO` \ (when validating), or install `sphinx-build` and rerun `./configure`. \ - See https://ghc.haskell.org/trac/ghc/wiki/Building/Preparation) + See https://gitlab.haskell.org/ghc/ghc/wikis/building/preparation) endif endif @@ -183,7 +183,7 @@ ifeq "$(BUILD_SPHINX_PDF)" "YES" ifeq "$(XELATEX)" "" $(error BUILD_SPHINX_PDF=YES, but `xelatex` was not found. \ Install `xelatex`, then rerun `./configure`. \ - See https://ghc.haskell.org/trac/ghc/wiki/Building/Preparation) + See https://gitlab.haskell.org/ghc/ghc/wikis/building/preparation) endif endif @@ -191,7 +191,7 @@ ifeq "$(HSCOLOUR_SRCS)" "YES" ifeq "$(HSCOLOUR_CMD)" "" $(error HSCOLOUR_SRCS=YES, but HSCOLOUR_CMD is empty. \ Run `cabal install hscolour`, then rerun `./configure`. \ - See https://ghc.haskell.org/trac/ghc/wiki/Building/Preparation) + See https://gitlab.haskell.org/ghc/ghc/wikis/building/preparation) endif endif @@ -1434,7 +1434,7 @@ maintainer-clean : distclean .PHONY: all_libraries .PHONY: bootstrapping-files -# See https://ghc.haskell.org/trac/ghc/wiki/Building/Porting +# See https://gitlab.haskell.org/ghc/ghc/wikis/building/porting bootstrapping-files: $(includes_H_CONFIG) bootstrapping-files: $(includes_DERIVEDCONSTANTS) bootstrapping-files: $(includes_GHCCONSTANTS) @@ -1503,7 +1503,7 @@ endif # [2] # find utils -name package-data.mk | xargs grep -l 'DEP_NAMES =.* ghc\($\| \)' # -# [3] https://ghc.haskell.org/trac/ghc/wiki/Building/CrossCompiling +# [3] https://gitlab.haskell.org/ghc/ghc/wikis/building/cross-compiling # # [4] * bc31dbe8ee22819054df60f5ef219fed393a1c54 # "Disable any packages built with stage 2 when cross-compiling |