aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2009-09-29 19:21:59 +0000
committerlloyd <[email protected]>2009-09-29 19:21:59 +0000
commit10195a560c12f89f23c7cc9a0a24e891a1ec91aa (patch)
tree4d405df92fd5ac286c792d399616576fcecc4d45 /configure.py
parent0d5a5fbdf57c465bb8963273102ab83efd443c30 (diff)
Add .S files automatically as well
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index 8e98b7e6a..1c4edb851 100755
--- a/configure.py
+++ b/configure.py
@@ -348,7 +348,8 @@ class ModuleInfo(object):
if dirpath == self.lives_in:
self.add = [filename for filename in filenames
if filename.endswith('.cpp') or
- filename.endswith('.h')]
+ filename.endswith('.h') or
+ filename.endswith('.S')]
# Coerce to more useful types
self.libs = force_to_dict(self.libs)