[project @ 2004-09-29 22:49:36 by krasimir]
authorkrasimir <unknown>
Wed, 29 Sep 2004 22:49:38 +0000 (22:49 +0000)
committerkrasimir <unknown>
Wed, 29 Sep 2004 22:49:38 +0000 (22:49 +0000)
Change file extension. We don't need hsc2hs here.

System/Process.hs [moved from System/Process.hsc with 99% similarity]

similarity index 99%
rename from System/Process.hsc
rename to System/Process.hs
index e349d9b..0cef6b7 100644 (file)
@@ -70,9 +70,9 @@ runCommand
 runCommand string = do
   (cmd,args) <- commandToProcess string
 #if !defined(mingw32_TARGET_OS) && !defined(__MINGW32__)
-  runProcess1 "runProcess" cmd args Nothing Nothing Nothing Nothing Nothing
+  runProcess1 "runCommand" cmd args Nothing Nothing Nothing Nothing Nothing
 #else
-  runProcess1 "runProcess" cmd [] Nothing Nothing Nothing Nothing Nothing args
+  runProcess1 "runCommand" cmd [] Nothing Nothing Nothing Nothing Nothing args
 #endif
 
 -- ----------------------------------------------------------------------------