Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Glasgow Haskell Compiler
Packages
Cabal
Commits
fb58429e
Commit
fb58429e
authored
Dec 05, 2013
by
Mikhail Glushenkov
Browse files
Pass '--explicit-configuration' to 'setup configure'.
parent
5b12ba02
Changes
2
Hide whitespace changes
Inline
Side-by-side
cabal-install/Distribution/Client/Configure.hs
View file @
fb58429e
...
...
@@ -216,6 +216,8 @@ configurePackage verbosity platform comp scriptOptions configFlags
configDependencies
=
[
(
packageName
(
Installed
.
sourcePackageId
deppkg
),
Installed
.
installedPackageId
deppkg
)
|
deppkg
<-
deps
],
-- Use '--exact-configuration' if supported.
configExactConfiguration
=
toFlag
True
,
configVerbosity
=
toFlag
verbosity
,
configBenchmarks
=
toFlag
(
BenchStanzas
`
elem
`
stanzas
),
configTests
=
toFlag
(
TestStanzas
`
elem
`
stanzas
)
...
...
cabal-install/Distribution/Client/Install.hs
View file @
fb58429e
...
...
@@ -1095,6 +1095,8 @@ installReadyPackage platform comp configFlags
configDependencies
=
[
(
packageName
(
Installed
.
sourcePackageId
deppkg
),
Installed
.
installedPackageId
deppkg
)
|
deppkg
<-
deps
],
-- Use '--exact-configuration' if supported.
configExactConfiguration
=
toFlag
True
,
configBenchmarks
=
toFlag
False
,
configTests
=
toFlag
(
TestStanzas
`
elem
`
stanzas
)
}
source
pkg
pkgoverride
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment