From 1fd059a14af5db6699be636667ff1ba730763065 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Fri, 30 Aug 2024 10:57:28 +0200 Subject: gnu: libcamera: Do not pass empty string to meson. * gnu/packages/networking.scm (libcamera)[arguments]: Use list for extra arguments to meson to avoid passing an empty string. Change-Id: I5e494eb10f06b4fe9e65e3b0f0f32dd99947b250 --- gnu/packages/networking.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gnu/packages') diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 9391b9f704..beb5f378b9 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014, 2017, 2018, 2021 Ludovic Courtès -;;; Copyright © 2015, 2016, 2017, 2018, 2020 Ricardo Wurmus +;;; Copyright © 2015, 2016, 2017, 2018, 2020, 2024 Ricardo Wurmus ;;; Copyright © 2015 Mark H Weaver ;;; Copyright © 2015, 2016, 2017, 2021 Stefan Reichör ;;; Copyright © 2016 Raimon Grau @@ -397,9 +397,9 @@ them in order to efficiently transfer a minimal amount of data.") ;; In 0.3.1 release simple pipeline wasn't enabled for ;; x86_64 by mistake, it's enabled a couple commits later. ;; Remove this expression on the next release. - #$(if (target-x86-64?) - "-Dpipelines=ipu3,vimc,uvcvideo,simple" - "") + #$@(if (target-x86-64?) + '("-Dpipelines=ipu3,vimc,uvcvideo,simple") + '()) "-Dudev=enabled" "-Dtest=true" "-Dv4l2=true" ;; XXX: Requires bundled pybind11. -- cgit v1.2.3