File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed
cabal-install/src/Distribution/Client Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -547,7 +547,6 @@ instance Semigroup SavedConfig where
547
547
configExConstraints = lastNonEmpty configExConstraints
548
548
, -- TODO: NubListify
549
549
configPreferences = lastNonEmpty configPreferences
550
- , configSolver = combine configSolver
551
550
, configAllowNewer =
552
551
combineMonoid savedConfigureExFlags configAllowNewer
553
552
, configAllowOlder =
Original file line number Diff line number Diff line change @@ -641,7 +641,6 @@ convertLegacyAllPackageFlags globalFlags configFlags configExFlags installFlags
641
641
{ configCabalVersion = projectConfigCabalVersion
642
642
, configExConstraints = projectConfigConstraints
643
643
, configPreferences = projectConfigPreferences
644
- , configSolver = projectConfigSolver
645
644
, configAllowOlder = projectConfigAllowOlder
646
645
, configAllowNewer = projectConfigAllowNewer
647
646
, configWriteGhcEnvironmentFilesPolicy =
@@ -911,7 +910,6 @@ convertToLegacySharedConfig
911
910
, configBackup = mempty
912
911
, configExConstraints = projectConfigConstraints
913
912
, configPreferences = projectConfigPreferences
914
- , configSolver = projectConfigSolver
915
913
, configAllowOlder = projectConfigAllowOlder
916
914
, configAllowNewer = projectConfigAllowNewer
917
915
, configWriteGhcEnvironmentFilesPolicy =
Original file line number Diff line number Diff line change @@ -829,7 +829,6 @@ data ConfigExFlags = ConfigExFlags
829
829
, configBackup :: Flag Bool
830
830
, configExConstraints :: [(UserConstraint , ConstraintSource )]
831
831
, configPreferences :: [PackageVersionConstraint ]
832
- , configSolver :: Flag PreSolver
833
832
, configAllowNewer :: Maybe AllowNewer
834
833
, configAllowOlder :: Maybe AllowOlder
835
834
, configWriteGhcEnvironmentFilesPolicy
@@ -838,7 +837,7 @@ data ConfigExFlags = ConfigExFlags
838
837
deriving (Eq , Show , Generic )
839
838
840
839
defaultConfigExFlags :: ConfigExFlags
841
- defaultConfigExFlags = mempty {configSolver = Flag defaultSolver}
840
+ defaultConfigExFlags = mempty
842
841
843
842
configureExCommand :: CommandUI (ConfigFlags , ConfigExFlags )
844
843
configureExCommand =
@@ -923,7 +922,6 @@ configureExOptions _showOrParseArgs src =
923
922
)
924
923
(map prettyShow)
925
924
)
926
- , optionSolver configSolver (\ v flags -> flags{configSolver = v})
927
925
, option
928
926
[]
929
927
[" allow-older" ]
You can’t perform that action at this time.
0 commit comments