commit 4bbbd5d632ab8eadcf668270d8ea949fdac670dc parent d76ccba56282c0c2e2656edc6e02cb6cec827032 Author: Jacki <jacki@thejackimonster.de> Date: Fri, 14 Mar 2025 17:33:01 +0100 Adjust commands in build step Signed-off-by: Jacki <jacki@thejackimonster.de> Diffstat:
| M | .github/workflows/linux.yml | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml @@ -27,9 +27,9 @@ jobs: run: | cd gnunet ./bootstrap - ./configure --prefix=/usr --disable-documentation - make -j $(nproc) - sudo make install + meson setup --prefix=/usr --libdir=lib build + meson compile -C build + sudo meson install -C build cd .. - name: Checkout the current branch