From 6cea85056b496ab62b001247fb16e0a045116ab7 Mon Sep 17 00:00:00 2001 From: Andre Klapper Date: Sun, 7 Jan 2024 21:19:02 +0000 Subject: [PATCH] Call "meson setup" to avoid warning --- content/core/setup/build/_index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/core/setup/build/_index.md b/content/core/setup/build/_index.md index 5a5b7c9..c70e011 100644 --- a/content/core/setup/build/_index.md +++ b/content/core/setup/build/_index.md @@ -161,7 +161,7 @@ You may enable Link-time optimization (meson option `b_lto`) to have better perf ```sh cd babl - meson _build \ + meson setup _build \ --prefix=${GIMP_PREFIX} \ --buildtype=release \ -Db_lto=true @@ -248,7 +248,7 @@ options](https://mesonbuild.com/Builtin-options.html), such as : ```sh cd gimp - meson _build \ + meson setup _build \ --prefix=${GIMP_PREFIX} \ --buildtype=release \ -Dpython=enabled -- GitLab