From c86ab4694ce610fde69baeadec5e0166dac8396a Mon Sep 17 00:00:00 2001 From: Jan Beich Date: Mon, 7 Nov 2022 20:27:06 +0000 Subject: [PATCH] meson: explicitly specify path for find(1) (#971) src/meson.build:1:0: ERROR: Command "/usr/bin/find -name *.cpp" failed with status 1. --- src/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index 2bf98995..5084ef98 100644 --- a/src/meson.build +++ b/src/meson.build @@ -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,