From: Zbigniew Jędrzejewski-Szmek Date: Wed, 5 Apr 2017 04:40:21 +0000 (-0400) Subject: meson: avoid detecting m4 dir as a program X-Git-Tag: v234~286^2~77 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=78b68dcb55c4da1148296ca5b101d23fa3898f8a;p=thirdparty%2Fsystemd.git meson: avoid detecting m4 dir as a program This is a bug in meson, already fixed upstream. For now, just specify the full path. --- diff --git a/meson.build b/meson.build index 95445f9559f..506b43dfca7 100644 --- a/meson.build +++ b/meson.build @@ -380,7 +380,7 @@ endforeach sed = find_program('sed') grep = find_program('grep') awk = find_program('awk') -m4 = find_program('m4') +m4 = find_program('/usr/bin/m4') stat = find_program('stat') # if -Dxxx-path option is found, use that. Otherwise, check in $PATH,