[oe-commits] Andreas Oberritter : xilinx-bsp.bbclass: fix sh equality operator

git version control git at git.openembedded.org
Sun Nov 14 23:43:34 UTC 2010


Module: openembedded.git
Branch: master
Commit: 6e6f4ca2cd1ab02b08410013acfa9df121a70ee1
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=6e6f4ca2cd1ab02b08410013acfa9df121a70ee1

Author: Andreas Oberritter <obi at opendreambox.org>
Date:   Tue Oct 26 15:39:45 2010 +0000

xilinx-bsp.bbclass: fix sh equality operator

Signed-off-by: Andreas Oberritter <obi at opendreambox.org>
Acked-by: Michael Smith <msmith at cbnco.com>

---

 classes/xilinx-bsp.bbclass |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/classes/xilinx-bsp.bbclass b/classes/xilinx-bsp.bbclass
index eb47634..9776c23 100644
--- a/classes/xilinx-bsp.bbclass
+++ b/classes/xilinx-bsp.bbclass
@@ -66,7 +66,7 @@ if [ -n "${XILINX_BSP_PATH}" ]; then
 			dts=`find "${XILINX_BSP_PATH}" -name *.dts -print`
 			if [ -e "$dts" ]; then
 				oenote "Replacing device tree to match hardware model"
-				if [ "${TARGET_ARCH}" == "powerpc" ]; then
+				if [ "${TARGET_ARCH}" = "powerpc" ]; then
 					cp -pP ${dts} ${S}/arch/powerpc/boot/dts/virtex${TARGET_BOARD}.dts
 				else
 					cp -pP ${dts} ${S}/arch/microblaze/platform/generic/${TARGET_BOARD}.dts
@@ -77,7 +77,7 @@ if [ -n "${XILINX_BSP_PATH}" ]; then
 			fi
 		elif [ -d "${S}/board/xilinx" ]; then
 			oenote "Replacing xparameters header to match hardware model"
-			if [ "${TARGET_ARCH}" == "powerpc" ]; then
+			if [ "${TARGET_ARCH}" = "powerpc" ]; then
 				xparam="${XILINX_BSP_PATH}/ppc${TARGET_CPU}_0/include/xparameters.h"
 				cpu="PPC`echo ${TARGET_CPU} | tr '[:lower:]' '[:upper:]'`"
 			else





More information about the Openembedded-commits mailing list