Skip to content

Commit

Permalink
Merge branch 'master' into ghc-9.8
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasabel authored Nov 1, 2023
2 parents f39bd11 + d644b79 commit 10d3d5c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
6 changes: 3 additions & 3 deletions cabal-install/src/Distribution/Client/ProjectBuilding.hs
Original file line number Diff line number Diff line change
Expand Up @@ -672,9 +672,9 @@ rebuildTargets
info verbosity $
"Executing install plan "
++ case buildSettingNumJobs of
NumJobs n -> " in parallel using " ++ show n ++ " threads."
UseSem n -> " in parallel using a semaphore with " ++ show n ++ " slots."
Serial -> " serially."
NumJobs n -> "in parallel using " ++ show n ++ " threads."
UseSem n -> "in parallel using a semaphore with " ++ show n ++ " slots."
Serial -> "serially."

createDirectoryIfMissingVerbose verbosity True distBuildRootDirectory
createDirectoryIfMissingVerbose verbosity True distTempDirectory
Expand Down
6 changes: 6 additions & 0 deletions changelog.d/pr-9376
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
synopsis: Avoid a double space in "Executing install plan ..."
description:
The "Executing·install·plan··serially" and other similar "Executing install
plan··..." outputs no longer contain double spaces.
packages: cabal-install
prs: #9376
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@
# Output file base name for HTML help builder.
htmlhelp_basename = 'CabalUsersGuide'

# MathJax to use SVG rendering by default
mathjax_path = 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS-MML_SVG'
# MathJax to use HTML rendering by default (makes the text selectable, see #8453)
mathjax_path = 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS_CHTML'


# -- Options for LaTeX output ---------------------------------------------
Expand Down

0 comments on commit 10d3d5c

Please sign in to comment.