diff --git a/buildscripts/errorcodes.py b/buildscripts/errorcodes.py index 536a3d2b367..aee0861a093 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-" ): + if x.startswith( "." ) or x.startswith( "pcre-" ) or x.startswith( "32bit" ): continue full = prefix + "/" + x if os.path.isdir( full ):