From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from localhost (localhost [65.103.231.193]) by mx.groups.io with SMTP id smtpd.web12.59.1600982521577467652 for ; Thu, 24 Sep 2020 14:22:01 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (domain: localhost, ip: 65.103.231.193, mailfrom: rebecca@localhost) Received: by localhost (Postfix, from userid 1000) id 4BDCA40FB520; Thu, 24 Sep 2020 15:22:00 -0600 (MDT) From: "Rebecca Cran" To: devel@edk2.groups.io Cc: Eric Jin , G Edhaya Chandran , Samer El-Haj-Mahmoud , Rebecca Cran Subject: [edk2-test] [PATCH 1/3] uefi-sct/SctPkg: Fix build.sh when specifying GCC5 toolchain Date: Thu, 24 Sep 2020 15:21:29 -0600 Message-Id: <20200924212131.22982-1-rebecca@nuviainc.com> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable build.sh usage indicates that "GCC5" can be specified, but it's currently rejected due to a case statement only matching "GCC" or "gcc". Fix this by adding a wildcard match. Signed-off-by: Rebecca Cran --- uefi-sct/SctPkg/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uefi-sct/SctPkg/build.sh b/uefi-sct/SctPkg/build.sh index cad17ccd..be610deb 100755 --- a/uefi-sct/SctPkg/build.sh +++ b/uefi-sct/SctPkg/build.sh @@ -151,7 +151,7 @@ case `uname` in TARGET_TOOLS=3DARMGCC ;; =09 - GCC | gcc) + GCC* | gcc*) set_cross_compile CROSS_COMPILE=3D"$TEMP_CROSS_COMPILE" export TARGET_TOOLS=3D`get_gcc_version "$CROSS_COMPILE"gcc` --=20 2.26.2