From: Amul Shah <Amul.Shah@fisglobal.com>
Forwarded: not-needed
Summary: Fix an error that caused the install script to not install UTF-8 object files
Description: Upstream intended for autorelink to be enabled by default. However
  the default shared memory segment for autorelink is 93MiB, much greater than
  the system default of 32MiB. Users who wish to enable autorelink must
  increase the value of shmmax.
Applied-Upstream: V6.3-001
Last-Update: 2016-05-17

--- a/sr_unix/configure.gtc
+++ b/sr_unix/configure.gtc
@@ -626,7 +626,7 @@
 	(
 		# Ensure we ARE in UTF-8 mode
 		utflocale=`locale -a | grep $binaryopt -iE 'en_us\.utf.?8$' | head -n1`
-		if [ $utflocale = "" ]; then
+		if [ "$utflocale" = "" ]; then
 			# If no locale defined, try C.UTF-8
 			utflocale="C.UTF-8"
 		fi
