summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2017-05-29 14:30:29 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2017-05-29 14:30:29 +0100
commitbc3f3b142e972071df8968f878f76e4412b4e3e6 (patch)
tree2a5beb06d180a4fd4ab8d2efa0a568ca0da9f1a3
parentAdd heartbeat service (diff)
downloadutil-bc3f3b142e972071df8968f878f76e4412b4e3e6.tar.bz2
util-bc3f3b142e972071df8968f878f76e4412b4e3e6.tar.xz
util-bc3f3b142e972071df8968f878f76e4412b4e3e6.zip
Look for Jamroot.jam as well as Jamfile.jam
-rw-r--r--ycm_extra_conf.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ycm_extra_conf.py b/ycm_extra_conf.py
index ae6aa1c..a132da4 100644
--- a/ycm_extra_conf.py
+++ b/ycm_extra_conf.py
@@ -10,7 +10,7 @@ def IsHeaderFile( filename ):
def ContainsJamfile(path):
for file in os.listdir(path):
- if file == 'Jamfile.jam':
+ if file == 'Jamfile.jam' or file == 'Jamroot.jam':
return True
return False