[PATCH rtems-lwip v4 2/7] lwip.py: Use ant_glob instead of os.walk()

Duc Doan dtbpkmte at gmail.com
Fri Sep 9 23:13:11 UTC 2022


Updates #4714
---
 lwip.py | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/lwip.py b/lwip.py
index 2b0c205..2d93d3e 100644
--- a/lwip.py
+++ b/lwip.py
@@ -110,15 +110,7 @@ def build(bld):
     source_files.extend(common_source_files)
 
     def walk_sources(path):
-        sources = []
-        for root, dirs, files in os.walk(path):
-            for name in files:
-                ext = os.path.splitext(name)[1]
-                src_root = os.path.split(root)
-                path = os.path.join(src_root[0], src_root[1])
-                if ext == '.c' or ext == '.S':
-                    sources.append(os.path.join(path, name))
-        return sources
+        return bld.path.ant_glob([path + '/**/*.c', path + '/**/*.S']) 
 
     if arch == 'arm':
         # These files will not compile for BSPs other than TMS570
-- 
2.37.2



More information about the devel mailing list