[PATCH 1/2] build: fix list_dir_globs failure in MSYS2
Ric Li
ricmli at outlook.com
Sat Sep 16 15:15:19 CEST 2023
When running 'meson build' in MSYS2,
"list-dir-globs.py * failed with status 1".
Signed-off-by: Ric Li <ricmli at outlook.com>
---
app/meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app/meson.build b/app/meson.build
index e4bf5c531c..73e5138301 100644
--- a/app/meson.build
+++ b/app/meson.build
@@ -11,7 +11,7 @@ disable_apps = run_command(list_dir_globs, disable_apps, check: true).stdout().s
enable_apps = ',' + get_option('enable_apps')
enable_apps = run_command(list_dir_globs, enable_apps, check: true).stdout().split()
if enable_apps.length() == 0
- enable_apps = run_command(list_dir_globs, '*', check: true).stdout().split()
+ enable_apps = run_command(list_dir_globs, '*/', check: true).stdout().split()
endif
apps = [
--
2.42.0
More information about the dev
mailing list