summaryrefslogtreecommitdiffstats
path: root/netlegacy.py
diff options
context:
space:
mode:
Diffstat (limited to 'netlegacy.py')
-rw-r--r--netlegacy.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/netlegacy.py b/netlegacy.py
index 0889548..89176e6 100644
--- a/netlegacy.py
+++ b/netlegacy.py
@@ -40,9 +40,10 @@ for root, dirs, files in os.walk("."):
dirs.append('./bsps/shared/net')
include_files[root[2:]] = []
for name in files:
- if name[-2:] == '.c':
+ ext = os.path.splitext(name)[1]
+ if ext == '.c':
source_files.append(os.path.join(root, name))
- if name[-2:] == '.h' and name not in exclude_headers:
+ if ext == '.h' and name not in exclude_headers:
include_files[root[2:]].append(os.path.join(root, name))