From 06648ca21b767a41b9892af851248adb292829d3 Mon Sep 17 00:00:00 2001 From: orbea Date: Sun, 14 Jan 2018 09:11:32 -0800 Subject: [PATCH] qb: Silence shellcheck warning. Line 25: SORT=sort ^-- SC2209: Use var=$(command) to assign output (or quote to assign string). --- qb/config.libs.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qb/config.libs.sh b/qb/config.libs.sh index f1a994ebd5..eeb21aac77 100644 --- a/qb/config.libs.sh +++ b/qb/config.libs.sh @@ -22,7 +22,7 @@ PTHREADLIB=-lpthread SOCKETLIB=-lc SOCKETHEADER= INCLUDES='usr/include usr/local/include' -SORT=sort +SORT='sort' if [ "$OS" = 'BSD' ]; then [ -d /usr/local/include ] && add_dirs INCLUDE /usr/local/include @@ -41,7 +41,7 @@ elif [ "$OS" = 'Win32' ]; then elif [ "$OS" = 'Cygwin' ]; then die 1 'Error: Cygwin is not a supported platform. See https://bot.libretro.com/docs/compilation/windows/' elif [ "$OS" = 'SunOS' ]; then - SORT=gsort + SORT='gsort' # for now disabling Pulse as it breaks linking # this will need to be investigated later HAVE_PULSE=no