diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-05 00:40:21 -0400 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-04-23 21:47:26 -0400 |
commit | 78b68dcb55c4da1148296ca5b101d23fa3898f8a (patch) | |
tree | 0872418ae514541ea0830d7693db52bdb2166914 | |
parent | e2bb410515538eb021966432301a52c964239989 (diff) | |
download | systemd-78b68dcb55c4da1148296ca5b101d23fa3898f8a.tar.gz |
meson: avoid detecting m4 dir as a program
This is a bug in meson, already fixed upstream.
For now, just specify the full path.
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
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, |