From d3b1d2b6cea308d4b150f976e987fb49f58a8582 Mon Sep 17 00:00:00 2001 From: Ulrich Müller Date: Thu, 23 Mar 2023 17:40:15 +0100 Subject: virtualx.eclass: Quote argument of ":" command MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This avoids globbing, see: https://www.shellcheck.net/wiki/SC2223 Signed-off-by: Ulrich Müller --- eclass/virtualx.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eclass') diff --git a/eclass/virtualx.eclass b/eclass/virtualx.eclass index 2513f4e16256..e2bfee1dfeaa 100644 --- a/eclass/virtualx.eclass +++ b/eclass/virtualx.eclass @@ -26,7 +26,7 @@ _VIRTUALX_ECLASS=1 # Any other value is taken as useflag desired to be in control of # the dependency (eg. VIRTUALX_REQUIRED="kde" will add the dependency # into "kde? ( )" and add kde into IUSE. -: ${VIRTUALX_REQUIRED:=test} +: "${VIRTUALX_REQUIRED:=test}" # @ECLASS_VARIABLE: VIRTUALX_DEPEND # @OUTPUT_VARIABLE -- cgit v1.2.3-65-gdbad