Subject: Fix bashism
From: Jose M Calhariz <jose@calhariz.com>
Index: xorp-1.8.5/bgp/bgp_xrl_shell_funcs.sh
===================================================================
--- xorp-1.8.5.orig/bgp/bgp_xrl_shell_funcs.sh	2010-07-19 22:10:33.000000000 +0100
+++ xorp-1.8.5/bgp/bgp_xrl_shell_funcs.sh	2013-08-16 18:16:22.000000000 +0100
@@ -1,6 +1,6 @@
 #!/bin/sh
 
-if [ "_$CALLXRL" == "_" ]
+if [ "_$CALLXRL" = "_" ]
 then
     if which call_xrl > /dev/null 2>&1
 	then
Index: xorp-1.8.5/fea/fea_xrl_shell_funcs.sh
===================================================================
--- xorp-1.8.5.orig/fea/fea_xrl_shell_funcs.sh	2010-07-19 22:10:33.000000000 +0100
+++ xorp-1.8.5/fea/fea_xrl_shell_funcs.sh	2013-08-16 18:16:52.000000000 +0100
@@ -3,7 +3,7 @@
 # Conditionally set ${srcdir} if it wasn't assigned (e.g., by `gmake check`)
 if [ "X${srcdir}" = "X" ] ; then srcdir=`dirname $0` ; fi
 
-if [ "_$CALLXRL" == "_" ]
+if [ "_$CALLXRL" = "_" ]
 then
     if which call_xrl > /dev/null 2>&1
 	then
