[Buildroot] [git commit branch/2021.05.x] utils/getdeveloperlib.py: force forward-slash for pattern matching

Peter Korsgaard peter at korsgaard.com
Mon Sep 13 17:41:36 UTC 2021


commit: https://git.buildroot.net/buildroot/commit/?id=963af0c56ec4cd23276933b63711d0c4e517a517
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2021.05.x

Force relative file path resolution of DEVELOPERS file entries to use
forward-slash separators since pattern matching assumes forward slashes.
This is to help permit uses invoking `get-developers` on Platforms where
`os.sep` may not be a forward slash.

Signed-off-by: James Knight <james.d.knight at live.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout at mind.be>
(cherry picked from commit eb75d71b8026ff98d632964ac1c6fedeb0433ef7)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 utils/getdeveloperlib.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/utils/getdeveloperlib.py b/utils/getdeveloperlib.py
index 08abcfed54..ce822320f8 100644
--- a/utils/getdeveloperlib.py
+++ b/utils/getdeveloperlib.py
@@ -251,7 +251,10 @@ def parse_developers():
                 if len(dev_files) == 0:
                     print("WARNING: '%s' doesn't match any file" % fname,
                           file=sys.stderr)
-                files += [os.path.relpath(f, brpath) for f in dev_files]
+                for f in dev_files:
+                    dev_file = os.path.relpath(f, brpath)
+                    dev_file = dev_file.replace(os.sep, '/')  # force unix sep
+                    files.append(dev_file)
             elif line == "":
                 if not name:
                     continue


More information about the buildroot mailing list