esacpe backslashes in the filename in the .rc file
authorSimon Marlow <simonmar@microsoft.com>
Wed, 12 Sep 2007 11:16:58 +0000 (11:16 +0000)
committerSimon Marlow <simonmar@microsoft.com>
Wed, 12 Sep 2007 11:16:58 +0000 (11:16 +0000)
compiler/main/DriverPipeline.hs

index 845f909..b0e7cfa 100644 (file)
@@ -1330,8 +1330,10 @@ maybeCreateManifest dflags exe_filename = do
   rc_obj_filename <- newTempName dflags (objectSuf dflags)
 
   writeFile rc_filename $
-      "1 24 MOVEABLE PURE \"" ++ manifest_filename ++ "\"\n"
+      "1 24 MOVEABLE PURE " ++ show manifest_filename ++ "\n"
         -- magic numbers :-)
+        -- show is a bit hackish above, but we need to esacpe the
+        -- backslashes in the path.
 
   let wr_opts = getOpts dflags opt_windres
   runWindres dflags $ map SysTools.Option $