Skip to content

Commit

Permalink
meson: explicitly specify path for find(1) (#971)
Browse files Browse the repository at this point in the history
src/meson.build:1:0: ERROR: Command "/usr/bin/find -name *.cpp" failed with status 1.
  • Loading branch information
jbeich committed Nov 7, 2022
1 parent 5d50665 commit c86ab46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
@@ -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')

executable('Hyprland', src,
Expand Down

0 comments on commit c86ab46

Please sign in to comment.