osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-dev/+/37341?usp=email )
Change subject: gen_makefile: fix meson warning ......................................................................
gen_makefile: fix meson warning
Fix for: WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated.
Change-Id: I5de0285012344876dbe47f1ae663bf93c45aade0 --- M gen_makefile.py 1 file changed, 13 insertions(+), 1 deletion(-)
Approvals: osmith: Looks good to me, approved; Verified
diff --git a/gen_makefile.py b/gen_makefile.py index 9b896b2..ff8ab78 100755 --- a/gen_makefile.py +++ b/gen_makefile.py @@ -263,7 +263,7 @@ -chmod -R ug+w {build_proj} -rm -rf {build_proj} mkdir -p {build_proj} - cd {build_proj}; {cflags}{docker_cmd}meson {build_to_src} . + cd {build_proj}; {cflags}{docker_cmd}meson setup {build_to_src} . sync touch $@ '''