From 20d0b9bd44562358cfaa8fe0dbb43c715901d11e Mon Sep 17 00:00:00 2001 From: Lorenzo Cogotti Date: Thu, 25 May 2023 20:11:40 +0200 Subject: [PATCH] [README] Update meson setup commands. meson command syntax has changed, update documentation to reflect this. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f730fc0..c321afa 100644 --- a/README.md +++ b/README.md @@ -54,18 +54,18 @@ process. The basic steps to configure and build `lonetix` and every utility, with debug options enabled, is: ```sh -$ git clone https://git.doublefourteen.io/bgp/ubgpsuite.git +$ git clone https://gitea.it/1414codeforge/ubgpsuite.git $ cd ubgpsuite -$ meson build && cd build +$ meson setup build && cd build $ ninja ``` In case you want to perform a release build, enable the release configuration, like this: ```sh -$ git clone https://git.doublefourteen.io/bgp/ubgpsuite.git +$ git clone https://gitea.it/1414codeforge/ubgpsuite.git $ cd ubgpsuite -$ meson --buildtype=release build && cd build +$ meson setup --buildtype=release build && cd build $ ninja ```