summaryrefslogtreecommitdiff
path: root/.ycm_extra_conf.py
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2022-04-01 03:14:50 -0500
committerMatt A. Tobin <email@mattatobin.com>2022-04-01 03:14:50 -0500
commit0231f7464fb13eb146a2d4f77f23d75c52a589e1 (patch)
tree3845a01934f5883395df266990c7769846bf2d47 /.ycm_extra_conf.py
parentc3dc8a1f81c2148a64bc99a194da4c10614e9b95 (diff)
downloadaura-central-0231f7464fb13eb146a2d4f77f23d75c52a589e1.tar.gz
Move BinOC Apps to apps/ and make navigator build .. also use a bash script for mach and chain to real-mach
Diffstat (limited to '.ycm_extra_conf.py')
-rw-r--r--.ycm_extra_conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/.ycm_extra_conf.py b/.ycm_extra_conf.py
index ec4065836..30b3aee49 100644
--- a/.ycm_extra_conf.py
+++ b/.ycm_extra_conf.py
@@ -14,12 +14,12 @@ except ImportError:
old_bytecode = sys.dont_write_bytecode
sys.dont_write_bytecode = True
-path = os.path.join(os.path.dirname(__file__), 'mach')
+path = os.path.join(os.path.dirname(__file__), 'real-mach')
if not os.path.exists(path):
path = os.path.join(os.path.dirname(__file__), 'config.status')
config = imp.load_module('_buildconfig', open(path), path, ('', 'r', imp.PY_SOURCE))
- path = os.path.join(config.topsrcdir, 'mach')
+ path = os.path.join(config.topsrcdir, 'real-mach')
mach_module = imp.load_module('_mach', open(path), path, ('', 'r', imp.PY_SOURCE))
sys.dont_write_bytecode = old_bytecode