summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/errorcodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/errorcodes.py b/buildscripts/errorcodes.py
index aee0861a093..3c177e8165a 100644
--- a/buildscripts/errorcodes.py
+++ b/buildscripts/errorcodes.py
@@ -8,7 +8,7 @@ def getAllSourceFiles( arr=None , prefix="." ):
arr = []
for x in os.listdir( prefix ):
- if x.startswith( "." ) or x.startswith( "pcre-" ) or x.startswith( "32bit" ):
+ if x.startswith( "." ) or x.startswith( "pcre-" ) or x.startswith( "32bit" ) or x.startswith( "mongodb-" ):
continue
full = prefix + "/" + x
if os.path.isdir( full ):