From 8a658dabb1ecd1f54f58483e53eccb7641b4e52f Mon Sep 17 00:00:00 2001 From: Seoyeon Date: Thu, 6 Feb 2025 14:14:08 +0900 Subject: [PATCH] Update README file for Ubuntu local build - There's an error message using `meson compile -C builddir/` command ``` usage: meson [-h] {setup,configure,dist,install,introspect,init,test,wrap,subprojects,help,rewrite} ... meson: error: unrecognized arguments: -C builddir/ ``` - Update the README.md file for the command to use `ninja` build system with `-C` option. Change-Id: Ia0930fc96ece568fbc2fd329e650594c63c08416 Signed-off-by: Seoyeon --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 83e3480..d78ba79 100644 --- a/README.md +++ b/README.md @@ -30,5 +30,5 @@ Please refer [grpc](https://grpc.io/) and [proto buffers](https://developers.goo ### Local Build (Ubuntu) ```bash meson setup builddir -Dlibaurum_only=true -meson compile -C builddir/ +ninja -C builddir/ ``` -- 2.34.1