From ff4753e362714a3c4c759c2fad8a9e5b8fe5bef5 Mon Sep 17 00:00:00 2001 From: Chris Larson Date: Thu, 11 Nov 2010 08:57:04 -0700 Subject: bb.pysh: fix writing pyshtables all over the place Signed-off-by: Chris Larson --- lib/bb/pysh/pyshyacc.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib/bb/pysh') diff --git a/lib/bb/pysh/pyshyacc.py b/lib/bb/pysh/pyshyacc.py index 3d9510c0c..6b2bf466d 100644 --- a/lib/bb/pysh/pyshyacc.py +++ b/lib/bb/pysh/pyshyacc.py @@ -648,7 +648,10 @@ def p_error(p): try: import pyshtables except ImportError: - yacc.yacc(tabmodule = 'pyshtables') + outputdir = os.path.dirname(__file__) + if not os.access(outputdir, os.W_OK): + outputdir = '' + yacc.yacc(tabmodule = 'pyshtables', outputdir = outputdir, debug = 0) else: yacc.yacc(tabmodule = 'pysh.pyshtables', write_tables = 0, debug = 0) -- cgit 1.2.3-korg