2001-02-02 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* configre.in: Fix AM_INIT_AUTOMAKE.
	* aclocal/bsp-arg-enable.m4: Extend comments.
	* aclocal/check-bsps.m4: Remove extraneous comments, add test -d in
	the default clause.
This commit is contained in:
Joel Sherrill
2001-02-02 18:30:42 +00:00
parent d32f65e69e
commit 21d7de3a3f
4 changed files with 16 additions and 9 deletions

View File

@@ -32,11 +32,11 @@ AC_MSG_CHECKING([for bsps])
leon) rtems_bsp="$rtems_bsp leon1 leon2";;
sim68000) rtems_bsp="$rtems_bsp sim68000 simcpu32";;
shsim) rtems_bsp="$rtems_bsp simsh7032 simsh7045";;
*) $1="[$]$1 $file";;
*) if test -d $srcdir/$RTEMS_TOPdir/c/src/lib/libbsp/$RTEMS_CPU/$file; then
$1="[$]$1 $file"
fi;;
esac;
done
dnl ;;
dnl esac
AC_MSG_RESULT([[$]$1 .. done])
])dnl