diff options
-rw-r--r-- | recipes-bsp/at91bootstrap/at91bootstrap.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-bsp/at91bootstrap/at91bootstrap.inc b/recipes-bsp/at91bootstrap/at91bootstrap.inc index 6dfc9ef..1738833 100644 --- a/recipes-bsp/at91bootstrap/at91bootstrap.inc +++ b/recipes-bsp/at91bootstrap/at91bootstrap.inc @@ -85,7 +85,7 @@ do_configure() { # Copy defconfig to .config if .config does not exist. This allows # recipes to manage the .config themselves in do_configure_prepend() # and to override default settings with a custom file. - if [ ${MACHINE} == mtr ]] || [[ ${MACHINE} == mtrv1 ]] || [[ ${MACHINE} == mtre ]] ; then + if [ "${MACHINE}" = "mtr" ] || [ "${MACHINE}" = "mtrv1" ] || [ "${MACHINE}" = "mtre" ] ; then CTYPE=".mtr" fi |