Fix wrong command hint in case of error

This commit is contained in:
kaidoho
2018-12-02 15:36:39 +01:00
committed by Joel Sherrill
parent 0888bfd5dd
commit b8e8d0dea9

View File

@@ -38,7 +38,7 @@ AC_ARG_ENABLE(rtemsbsp,
${cfg_arch}* )
;;
* )
AC_MSG_ERROR([BSP '$bsp' architecture does not match the --target architecture, run 'rtems-bsp' (in the top of the source tree) for a valid BSP list])
AC_MSG_ERROR([BSP '$bsp' architecture does not match the --target architecture, run 'rtems-bsps' (in the top of the source tree) for a valid BSP list])
;;
esac
found=yes
@@ -46,7 +46,7 @@ AC_ARG_ENABLE(rtemsbsp,
fi
done
if test $found = no; then
AC_MSG_ERROR([BSP '$bsp' not found, run 'rtems-bsp' (in the top of the source tree) for a valid BSP list])
AC_MSG_ERROR([BSP '$bsp' not found, run 'rtems-bsps' (in the top of the source tree) for a valid BSP list])
fi
done
;;