File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Cabal/src/Distribution/Simple/Program Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -227,10 +227,8 @@ hpcProgram =
227
227
haskellSuiteProgram :: Program
228
228
haskellSuiteProgram =
229
229
(simpleProgram " haskell-suite" )
230
- { -- pretend that the program exists, otherwise it won't be in the
231
- -- "configured" state
232
- programFindLocation = \ _verbosity _searchPath ->
233
- return $ Just (" haskell-suite-dummy-location" , [] )
230
+ { programFindLocation = \ _verbosity _searchPath ->
231
+ return Nothing
234
232
}
235
233
236
234
-- This represent a haskell-suite package manager. See the comments for
@@ -239,7 +237,7 @@ haskellSuitePkgProgram :: Program
239
237
haskellSuitePkgProgram =
240
238
(simpleProgram " haskell-suite-pkg" )
241
239
{ programFindLocation = \ _verbosity _searchPath ->
242
- return $ Just ( " haskell-suite-pkg-dummy-location " , [] )
240
+ return Nothing
243
241
}
244
242
245
243
happyProgram :: Program
You can’t perform that action at this time.
0 commit comments