]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
ci: build.sh: Don't mention that MESON_ARGS are available via CLI
authorErik Skultety <eskultet@redhat.com>
Thu, 24 Aug 2023 13:43:13 +0000 (15:43 +0200)
committerErik Skultety <eskultet@redhat.com>
Tue, 12 Sep 2023 08:36:13 +0000 (10:36 +0200)
Previous patches have removed the code that allowed injecting arbitrary
meson arguments, same for ninja args.

Signed-off-by: Erik Skultety <eskultet@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
ci/build.sh

index 0549b01ca0ec2cd84c4706a8a5a9a80148328d79..7cf07ba5a8c588c56035f385cbd0af18baab638b 100644 (file)
@@ -21,13 +21,7 @@ GIT_ROOT="$(git rev-parse --show-toplevel)"
 # be to pass options to trigger cross-compilation
 #
 # $MESON_ARGS correspond to meson's setup args, i.e. configure args. It's
-# populated either from a GitLab's job configuration or from command line as
-# `$ helper build --meson-args='-Dopt1 -Dopt2'` when run in a local
-# containerized environment
-#
-# The contents of $MESON_ARGS (defined locally) should take precedence over
-# those of $MESON_OPTS (defined when the container was built), so they're
-# passed to meson after them
+# populated from a GitLab's job configuration
 
 meson setup build --werror -Dsystem=true $MESON_OPTS $MESON_ARGS || \
 (cat build/meson-logs/meson-log.txt && exit 1)