> -----Original Message----- > From: Dmitry Kozlyuk <[email protected]> > Sent: Thursday, April 15, 2021 11:36 PM > To: [email protected] > Cc: Dmitry Kozlyuk <[email protected]>; Juraj Linkeš > <[email protected]>; Bruce Richardson <[email protected]> > Subject: [PATCH] buildtools: fix all drivers disabled on Windows > > buildtools/list-dir-globs.py printed paths with OS directory separator, which > is > "/" on Unices and "\" on Windows, while Meson code always expected "/". This > resulted it all drivers being disabled on Windows. > > Replace "\" with "/" in script output. Forward slash is a valid, although non- > default, separator on Windows, so no paths can be broken by this substitution. > > Fixes: 2e33309ebe03 ("config: enable/disable drivers in Arm builds") > Cc: Juraj Linkeš <[email protected]>
This patch was only the latest that changed the code if the file, but not the logic related to path separators. I think you patch fixes the original commit ab9407c3addd. > > Signed-off-by: Dmitry Kozlyuk <[email protected]> > --- > buildtools/list-dir-globs.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/buildtools/list-dir-globs.py b/buildtools/list-dir-globs.py index > 911e267335..d824360d39 100755 > --- a/buildtools/list-dir-globs.py > +++ b/buildtools/list-dir-globs.py > @@ -17,4 +17,4 @@ > if path: > for p in iglob(os.path.join(root, path)): > if os.path.isdir(p): > - print(os.path.relpath(p)) > + print(os.path.relpath(p).replace('\\', '/')) > -- > 2.29.3 >

