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
3ca65fdd
Commit
3ca65fdd
authored
Jul 06, 2013
by
Mikhail Glushenkov
Browse files
Use System.Process instead of System.Cmd.
System.Cmd is deprecated in process-1.2.
parent
b23cb2ae
Changes
3
Hide whitespace changes
Inline
Side-by-side
Cabal/Cabal.cabal
View file @
3ca65fdd
...
...
@@ -122,7 +122,7 @@ library
deepseq >= 1.3 && < 1.4,
filepath >= 1 && < 1.4,
directory >= 1 && < 1.3,
process >= 1
&& < 1.3,
process >= 1
.0.1.1
&& < 1.3,
time >= 1.1 && < 1.5,
containers >= 0.1 && < 0.6,
array >= 0.1 && < 0.5,
...
...
Cabal/Distribution/Simple/Utils.hs
View file @
3ca65fdd
...
...
@@ -159,8 +159,6 @@ import System.Directory
,
doesDirectoryExist
,
doesFileExist
,
removeFile
,
findExecutable
)
import
System.Environment
(
getProgName
)
import
System.Cmd
(
rawSystem
)
import
System.Exit
(
exitWith
,
ExitCode
(
..
)
)
import
System.FilePath
...
...
@@ -192,7 +190,7 @@ import Distribution.Version
(
Version
(
..
))
import
Control.Exception
(
IOException
,
evaluate
,
throwIO
)
import
System.Process
(
runProcess
)
import
System.Process
(
rawSystem
,
runProcess
)
import
Control.Concurrent
(
forkIO
)
import
System.Process
(
runInteractiveProcess
,
waitForProcess
)
...
...
cabal-install/cabal-install.cabal
View file @
3ca65fdd
...
...
@@ -123,7 +123,7 @@ executable cabal
mtl >= 2.0 && < 3,
network >= 1 && < 3,
pretty >= 1 && < 1.2,
process >= 1
&& < 1.3,
process >= 1
.0.1.1
&& < 1.3,
random >= 1 && < 1.1,
stm >= 2.0 && < 3,
time >= 1.1 && < 1.5,
...
...
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