meson: explicitly specify path for find(1) (#7590)

assets/install/meson.build:1:10: ERROR: Command `/bin/sh -c 'find -type f -not -name "*.build"'` failed with status 1.
This commit is contained in:
Jan Beich 2024-08-31 09:01:02 +00:00 committed by GitHub
parent c5fd577181
commit 76b82fdde7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,4 +1,4 @@
globber = run_command('sh', '-c', 'find -type f -not -name "*.build"', check: true)
globber = run_command('sh', '-c', 'find . -type f -not -name "*.build"', check: true)
files = globber.stdout().strip().split('\n')
foreach file : files