From 5d0a09f3b4e8e53d559a57f3a6a51dd9a04c7b8f Mon Sep 17 00:00:00 2001 From: Anton-Latukha Date: Tue, 23 Jun 2020 20:31:39 +0300 Subject: [PATCH] CI: build.sh: mv doHyperlinkSource into logical place M build.sh --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 08db2e8..fef1436 100755 --- a/build.sh +++ b/build.sh @@ -63,8 +63,6 @@ doTracing=${doTracing:-'false'} enableDWARFDebugging=${enableDWARFDebugging:-'false'} # Strip results from all debugging symbols doStrip=${doStrip:-'false'} -# Generate hyperlinked source code for documentation using HsColour, and have Haddock documentation link to it. -doHyperlinkSource=${doHyperlinkSource:-'false'} # Nixpkgs expects shared libraries enableSharedLibraries=${enableSharedLibraries:-'true'} # Ability to make static libraries @@ -79,6 +77,8 @@ enableSeparateBinOutput=${enableSeparateBinOutput:-'false'} checkUnusedPackages=${checkUnusedPackages:-'false'} # Generation and installation of haddock API documentation doHaddock=${doHaddock:-'false'} +# Generate hyperlinked source code for documentation using HsColour, and have Haddock documentation link to it. +doHyperlinkSource=${doHyperlinkSource:-'false'} # Generation and installation of a coverage report. See https://wiki.haskell.org/Haskell_program_coverage doCoverage=${doCoverage:-'false'} # doBenchmark: Dependency checking + compilation and execution for benchmarks listed in the package description file.