mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-07 18:05:58 +01:00
meson: explicitly specify path for find(1) (#971)
src/meson.build:1:0: ERROR: Command "/usr/bin/find -name *.cpp" failed with status 1.
This commit is contained in:
parent
5d5066570c
commit
c86ab4694c
1 changed files with 1 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
globber = run_command('find', '-name', '*.cpp', check: true)
|
globber = run_command('find', '.', '-name', '*.cpp', check: true)
|
||||||
src = globber.stdout().strip().split('\n')
|
src = globber.stdout().strip().split('\n')
|
||||||
|
|
||||||
executable('Hyprland', src,
|
executable('Hyprland', src,
|
||||||
|
|
Loading…
Reference in a new issue