aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-11-16 17:32:58 +0000
committerlloyd <[email protected]>2009-11-16 17:32:58 +0000
commitba4520c3657ef4b031119685166d85446ef7c1ce (patch)
tree8d4d2ac5f5ca63f4a2d4e66a8110701ec2546eb5 /configure.py
parentb4b6bc090035e2cd0e4354fcb17de8f6d0babb6d (diff)
parent462eb27580d5ca690943a53ed78a5399b038ae46 (diff)
propagate from branch 'net.randombit.botan' (head 8cecdc1c3dd5853823fabcb816400dd467b3c04a)
to branch 'net.randombit.botan.c++0x' (head 39a585195a07f18628f6216a276402ed92567cc3)
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/configure.py b/configure.py
index d48396c8a..d888091ee 100755
--- a/configure.py
+++ b/configure.py
@@ -372,9 +372,10 @@ class ModuleInfo(object):
for (dirpath, dirnames, filenames) in os.walk(self.lives_in):
if dirpath == self.lives_in:
self.add = [filename for filename in filenames
- if filename.endswith('.cpp') or
+ if (filename.endswith('.cpp') or
filename.endswith('.h') or
- filename.endswith('.S')]
+ filename.endswith('.S'))
+ and not filename.startswith('.')]
# Coerce to more useful types
self.libs = force_to_dict(self.libs)