summaryrefslogtreecommitdiff
path: root/buildscripts/errorcodes.py
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-05-23 23:30:52 -0400
committerEliot Horowitz <eliot@10gen.com>2010-05-23 23:30:52 -0400
commitdb6337a8e85b960f18deec7bd2cad788ec4c1b05 (patch)
tree59de12504336063b94daeeac0f7fb01b7b0bed92 /buildscripts/errorcodes.py
parent14e68fa774a21606b7b369ae782d10d72d261656 (diff)
downloadmongo-db6337a8e85b960f18deec7bd2cad788ec4c1b05.tar.gz
seperate package for c++ client
Diffstat (limited to 'buildscripts/errorcodes.py')
-rwxr-xr-xbuildscripts/errorcodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/errorcodes.py b/buildscripts/errorcodes.py
index ede2927879d..cce94f394c7 100755
--- a/buildscripts/errorcodes.py
+++ b/buildscripts/errorcodes.py
@@ -9,7 +9,7 @@ def getAllSourceFiles( arr=None , prefix="." ):
arr = []
for x in os.listdir( prefix ):
- if x.startswith( "." ) or x.startswith( "pcre-" ) or x.startswith( "32bit" ) or x.startswith( "mongodb-" ) or x.startswith("debian"):
+ if x.startswith( "." ) or x.startswith( "pcre-" ) or x.startswith( "32bit" ) or x.startswith( "mongodb-" ) or x.startswith("debian") or x.startswith( "mongo-cxx-driver" ):
continue
full = prefix + "/" + x
if os.path.isdir( full ):