From 3ab1c9fa0cf52179872e0927539c945e4f4ee48e Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Tue, 30 Jul 2013 08:57:27 +0900 Subject: [PATCH] Bug 893976 - Don't create xpidl_debug and avoid LALR tables generation message. r=ted --- xpcom/idl-parser/xpidl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xpcom/idl-parser/xpidl.py b/xpcom/idl-parser/xpidl.py index cd2638a8c009..7e1932aac011 100644 --- a/xpcom/idl-parser/xpidl.py +++ b/xpcom/idl-parser/xpidl.py @@ -1485,7 +1485,7 @@ class IDLParser(object): optimize=1) self.parser = yacc.yacc(module=self, outputdir=outputdir, - debugfile='xpidl_debug', + debug=0, tabmodule='xpidlyacc', optimize=1)