bootstrap: Sort the contents of the prinstall.am files.

Sorting removed the variations across different host operating systems
and file systems.
This commit is contained in:
Chris Johns
2014-04-23 14:31:55 +10:00
parent 1450de0d7e
commit b74c9cfb76
3 changed files with 5 additions and 5 deletions

View File

@@ -42,7 +42,7 @@ AC_DEFUN([RTEMS_CHECK_BSPDIR],
case "\$1" in
EOF
for i in */bsp_specs; do
for i in `LANG=C LC_COLLATE=C ls */bsp_specs | sort`; do
d=`dirname $i`
cat << EOF >> acinclude.m4~
$d )

View File

@@ -2,12 +2,12 @@
AC_DEFUN([RTEMS_CHECK_BSPDIR],
[
case "$1" in
TLL6527M )
AC_CONFIG_SUBDIRS([TLL6527M]);;
bf537Stamp )
AC_CONFIG_SUBDIRS([bf537Stamp]);;
eZKit533 )
AC_CONFIG_SUBDIRS([eZKit533]);;
TLL6527M )
AC_CONFIG_SUBDIRS([TLL6527M]);;
*)
AC_MSG_ERROR([Invalid BSP]);;
esac

View File

@@ -38,12 +38,12 @@ AC_DEFUN([RTEMS_CHECK_BSPDIR],
AC_CONFIG_SUBDIRS([t32mppc]);;
tqm8xx )
AC_CONFIG_SUBDIRS([tqm8xx]);;
virtex )
AC_CONFIG_SUBDIRS([virtex]);;
virtex4 )
AC_CONFIG_SUBDIRS([virtex4]);;
virtex5 )
AC_CONFIG_SUBDIRS([virtex5]);;
virtex )
AC_CONFIG_SUBDIRS([virtex]);;
*)
AC_MSG_ERROR([Invalid BSP]);;
esac