2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* aclocal/subdirs.m4: Remove.
	* acinclude.m4: New (Replaces aclocal/subdirs.m4).
This commit is contained in:
Ralf Corsepius
2002-07-22 16:07:34 +00:00
parent 305dd8bd82
commit b4cde040d8
2 changed files with 13 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/subdirs.m4: Remove.
* acinclude.m4: New (Replaces aclocal/subdirs.m4).
2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2002-07-22 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/check-cpu.m4: Peek into cpukit/score/cpu instead of * aclocal/check-cpu.m4: Peek into cpukit/score/cpu instead of

View File

@@ -162,6 +162,8 @@ m4_ifdef([_RTEMS_$2_CONFIGDIRS_LIST],
[ [
_RTEMS_ARG_VAR([CC_FOR_$2], _RTEMS_ARG_VAR([CC_FOR_$2],
[c-compiler to be used for $1 subdirs (default: auto-detected)]) [c-compiler to be used for $1 subdirs (default: auto-detected)])
_RTEMS_ARG_VAR([CFLAGS_FOR_$2],
[c-flags to be used for $1 subdirs (default: provided by autoconf)])
if test "$no_recursion" != yes; then if test "$no_recursion" != yes; then
if test -n "${$2_SUBDIRS}"; then if test -n "${$2_SUBDIRS}"; then
@@ -245,7 +247,12 @@ if test "$no_recursion" != yes; then
AC_MSG_NOTICE([running $ac_sub_configure $ac_sub_configure_args \ AC_MSG_NOTICE([running $ac_sub_configure $ac_sub_configure_args \
--cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir]) --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir])
# The eval makes quoting arguments work. # The eval makes quoting arguments work.
eval CC=[$]CC_FOR_$2 \ ac_sub_configure_vars=
test -n "[$]CC_FOR_$2" && \
ac_sub_configure_vars="CC='[$]CC_FOR_$2'"
test -n "[$]CFLAGS_FOR_$2" && \
ac_sub_configure_vars="$ac_sub_configure_vars CFLAGS='[$]CFLAGS_FOR_$2'"
eval $ac_sub_configure_vars \
$ac_sub_configure $ac_sub_configure_args \ $ac_sub_configure $ac_sub_configure_args \
--cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir || --cache-file=$ac_sub_cache_file --srcdir=$ac_srcdir ||
AC_MSG_ERROR([$ac_sub_configure failed for $ac_dir]) AC_MSG_ERROR([$ac_sub_configure failed for $ac_dir])