commit f64643d6ed45c0605cd404a5dd87d3e7b27957b4
parent 50d25c77438b820ed3d6b09af369eb428890fe53
Author: Stephen Gregoratto <dev@sgregoratto.me>
Date: Fri, 4 Sep 2020 15:22:05 +1000
Realy, fix find_program()
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ncurses/meson.build b/ncurses/meson.build
@@ -49,9 +49,9 @@ foreach p : nc_progs
#endif
name = p + '-config'
prog = find_program([name,
- / 'bin' / name,
- / 'usr' / 'bin' / name,
- / 'usr' / 'local' / 'bin' / name],
+ '/bin' / name,
+ '/usr' / 'bin' / name,
+ '/usr' / 'local' / 'bin' / name],
required: false
)
if not prog.found()