xtensa-build-zephyr.sh: fix shellsheck warning

In scripts/xtensa-build-zephyr.sh line 199:

  if test $platform = tgl-h ; then
           ^-------^ SC2086: Double quote to prevent globbing
			     and word splitting.

Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
This commit is contained in:
Kai Vehmanen 2022-03-11 12:48:38 +02:00 committed by Liam Girdwood
parent 4013215f93
commit 8f3a78dc6a
1 changed files with 1 additions and 1 deletions

View File

@ -210,7 +210,7 @@ build_platforms()
;;
tgl-h|tgl)
PLAT_CONFIG='intel_adsp_cavs25'
if test $platform = tgl-h ; then
if test "$platform" = tgl-h ; then
PLAT_CONFIG="intel_adsp_cavs25_tgph"
fi
XTENSA_CORE="cavs2x_LX6HiFi3_2017_8"