summaryrefslogtreecommitdiffstats
path: root/aclocal/enable-rtemsbsp.m4
diff options
context:
space:
mode:
authorkaidoho <kho237115@gmail.com>2018-12-02 15:36:39 +0100
committerJoel Sherrill <joel@rtems.org>2018-12-02 16:50:31 -0600
commitb8e8d0dea9a8c0c7a49080af4f07fdbd5680604c (patch)
tree37f5235f3ed80759d0a75441026bcea63235e760 /aclocal/enable-rtemsbsp.m4
parentpsxhdrs: add POSIX API Signature Compliance Tests for locale.h (GCI 2018) (diff)
downloadrtems-b8e8d0dea9a8c0c7a49080af4f07fdbd5680604c.tar.bz2
Fix wrong command hint in case of error
Diffstat (limited to '')
-rw-r--r--aclocal/enable-rtemsbsp.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/aclocal/enable-rtemsbsp.m4 b/aclocal/enable-rtemsbsp.m4
index 91ab607751..f0b391bbb8 100644
--- a/aclocal/enable-rtemsbsp.m4
+++ b/aclocal/enable-rtemsbsp.m4
@@ -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
;;