[project @ 2003-06-12 16:25:31 by simonmar]
[ghc-hetmet.git] / ghc / compiler / main / SysTools.lhs
index a2f0d1d..505610c 100644 (file)
@@ -754,7 +754,7 @@ foreign import ccall unsafe "rawSystem"
 -- a single string.  Command-line parsing is done by the executable
 -- itself.
 rawSystem cmd args = do
-  let cmdline = translate cmd ++ concat (map ((' ':) . translate) args)
+  let cmdline = {-translate-} cmd ++ concat (map ((' ':) . translate) args)
   withCString cmdline $ \pcmdline -> do
     status <- throwErrnoIfMinus1 "rawSystem" (c_rawSystem pcmdline)
     case status of