5 feb 2008 kl. 16.16 skrev Brooks Davis:
>
> I'm not sure what all issues involved in re-escaping the '"'  
> characters
> would be would be, but hopefully someone with stronger python-foo that
> mine will have some ideas.
>

I have

Index: utils/ccc
===================================================================
--- utils/ccc   (revision 46776)
+++ utils/ccc   (working copy)
@@ -19,7 +19,7 @@
      sys.exit(1)

  def run(args):
-    cmd = ' '.join(args)
+    cmd = ' '.join(args).replace("\"", "\\\"");
      print >> sys.stderr, cmd
      code = os.system(cmd)
      if code > 255:

in my tree and it seems to fix the issue, I just haven't committed it  
yet.

Anders
_______________________________________________
cfe-dev mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev

Reply via email to