From 78b68dcb55c4da1148296ca5b101d23fa3898f8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Wed, 5 Apr 2017 00:40:21 -0400 Subject: [PATCH] meson: avoid detecting m4 dir as a program This is a bug in meson, already fixed upstream. For now, just specify the full path. --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 95445f9559..506b43dfca 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,