Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Cabal
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glasgow Haskell Compiler
Packages
Cabal
Commits
0a799a8e
Commit
0a799a8e
authored
17 years ago
by
Ross Paterson
Browse files
Options
Downloads
Patches
Plain Diff
warning police on SetupWrapper
parent
f5ec7c2f
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Distribution/SetupWrapper.hs
+9
-6
9 additions, 6 deletions
Distribution/SetupWrapper.hs
with
9 additions
and
6 deletions
Distribution/SetupWrapper.hs
+
9
−
6
View file @
0a799a8e
{-# OPTIONS_GHC -cpp #-}
-----------------------------------------------------------------------------
-- |
-- Module : Distribution.SetupWrapper
...
...
@@ -118,15 +117,21 @@ data Flags
verbosity
::
Verbosity
}
defaultFlags
::
Flags
defaultFlags
=
Flags
{
withCompiler
=
Nothing
,
withHcPkg
=
Nothing
,
verbosity
=
normal
}
setWithCompiler
::
Maybe
FilePath
->
Flags
->
Flags
setWithCompiler
f
flags
=
flags
{
withCompiler
=
f
}
setWithHcPkg
f
flags
=
flags
{
withHcPkg
=
f
}
setVerbosity
v
flags
=
flags
{
verbosity
=
v
}
setWithHcPkg
::
Maybe
FilePath
->
Flags
->
Flags
setWithHcPkg
f
flags
=
flags
{
withHcPkg
=
f
}
setVerbosity
::
Verbosity
->
Flags
->
Flags
setVerbosity
v
flags
=
flags
{
verbosity
=
v
}
opts
::
[
OptDescr
(
Flags
->
Flags
)]
opts
=
[
...
...
@@ -137,10 +142,8 @@ opts = [
Option
"v"
[
"verbosity"
]
(
OptArg
(
setVerbosity
.
flagToVerbosity
)
"n"
)
"Control verbosity (n is 0--5, normal verbosity level is 1, -v alone is equivalent to -v3)"
]
noSetupScript
=
error
"noSetupScript"
configCabalFlag
::
Flags
->
VersionRange
->
Compiler
->
IO
[
String
]
configCabalFlag
flags
AnyVersion
_
=
return
[]
configCabalFlag
_
flags
AnyVersion
_
=
return
[]
configCabalFlag
flags
range
comp
=
do
ipkgs
<-
getInstalledPackages
comp
True
(
verbosity
flags
)
-- user packages are *allowed* here, no portability problem
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment