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 =
227227haskellSuiteProgram :: Program
228228haskellSuiteProgram =
229229 (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
234232 }
235233
236234-- This represent a haskell-suite package manager. See the comments for
@@ -239,7 +237,7 @@ haskellSuitePkgProgram :: Program
239237haskellSuitePkgProgram =
240238 (simpleProgram " haskell-suite-pkg" )
241239 { programFindLocation = \ _verbosity _searchPath ->
242- return $ Just ( " haskell-suite-pkg-dummy-location " , [] )
240+ return Nothing
243241 }
244242
245243happyProgram :: Program
You can’t perform that action at this time.
0 commit comments