From 7fb7c679d027c7532b14090a73ce8dfdabf9f789 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Wed, 31 May 2023 18:43:54 +0200 Subject: [PATCH] ci: fix quotation in `MESON_OPTIONS` Fix quotation in `MESON_OPTIONS` because it is not expanded the way we want it. Fixes: 44367eef12b4ab ("ci: add `-UFASTPATH` to build_all") --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bb33517c8..3a21cdd38 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -305,8 +305,8 @@ build_all: -Droc=disabled -Dlibcamera=disabled -Dsession-managers=[] - -Dc_args="['-UFASTPATH']" - -Dcpp_args="['-UFASTPATH']" + -Dc_args=['-UFASTPATH'] + -Dcpp_args=['-UFASTPATH'] parallel: matrix: - CC: [gcc, clang]