From c0e70e1fa538dcccdfa465b73c336a7112d29c6e Mon Sep 17 00:00:00 2001 From: Eliseo Martínez Date: Mon, 19 May 2014 16:20:59 +0200 Subject: Introduce vim namespace: Contrib YCM: Fix build dir calculation. Build directory calculation had not been correctly updated in #716. --- contrib/YouCompleteMe/ycm_extra_conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/YouCompleteMe/ycm_extra_conf.py b/contrib/YouCompleteMe/ycm_extra_conf.py index 9fd2ba8b8d..8c013598cc 100644 --- a/contrib/YouCompleteMe/ycm_extra_conf.py +++ b/contrib/YouCompleteMe/ycm_extra_conf.py @@ -7,7 +7,7 @@ def DirectoryOfThisScript(): def GetDatabase(): - compilation_database_folder = DirectoryOfThisScript() + '/../build' + compilation_database_folder = DirectoryOfThisScript() + '/../../build' if os.path.exists(compilation_database_folder): return ycm_core.CompilationDatabase(compilation_database_folder) return None -- cgit