From 87cc4d961d0fd949152d3d3fb97a42b5f6e0c74d Mon Sep 17 00:00:00 2001 From: Jeffy Chen Date: Sat, 13 Aug 2022 18:12:57 +0800 Subject: [PATCH] meson: Fix configure error for multiple mali libs Use ' ' to split the outout of new grabber.sh. Change-Id: I1ecd4c2c9f52bf2e64dd45e6a52fd3eb4148e80a Signed-off-by: Jeffy Chen --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index d24d2f3..6bb37ba 100644 --- a/meson.build +++ b/meson.build @@ -33,7 +33,7 @@ message('Building for ' + '|'.join([arch, gpu, version, subversion, # Grab libraries with specified configs cmd = run_command('scripts/grabber.sh', arch, gpu, version, subversion, platform, optimize, check : false) -libs = cmd.stdout().strip().split('\n') +libs = cmd.stdout().strip().split(' ') # Use the first one as default library default_lib = libs[0]