mirror of
https://github.com/t-crest/rtems.git
synced 2025-11-16 12:34:47 +00:00
2002-11-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* acinclude.m4: Use AS_IF instead of if/then/else/endif. * configure.ac: Ditto.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2002-11-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* acinclude.m4: Use AS_IF instead of if/then/else/endif.
|
||||
* configure.ac: Ditto.
|
||||
|
||||
2002-11-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
|
||||
|
||||
* automake/compile.am: Remove CFLAGS_DEBUG_OPTIMIZE_V,
|
||||
|
||||
56
acinclude.m4
56
acinclude.m4
@@ -306,24 +306,18 @@ m4_append([_RTEMS_HOST_CONFIGDIRS_LIST],[ $1])dnl
|
||||
|
||||
if test $build = $host;
|
||||
then
|
||||
if test $host = $target;
|
||||
then
|
||||
_RTEMS_SUBST_IFNOT([build_configdirs],[$1])
|
||||
else
|
||||
_RTEMS_SUBST_IFNOT([build_configdirs],[$1])
|
||||
fi
|
||||
AS_IF([test $host = $target],
|
||||
[_RTEMS_SUBST_IFNOT([build_configdirs],[$1])],
|
||||
[_RTEMS_SUBST_IFNOT([build_configdirs],[$1])]
|
||||
)
|
||||
else
|
||||
if test $host = $target;
|
||||
then
|
||||
_RTEMS_SUBST_IFNOT([host_configdirs],[$1])
|
||||
else
|
||||
if test $build = $target;
|
||||
then
|
||||
_RTEMS_SUBST_IFNOT([host_configdirs],[$1])
|
||||
else
|
||||
_RTEMS_SUBST_IFNOT([host_configdirs],[$1])
|
||||
fi
|
||||
fi
|
||||
AS_IF([test $host = $target],
|
||||
[_RTEMS_SUBST_IFNOT([host_configdirs],[$1])],
|
||||
[AS_IF([test $build = $target],
|
||||
[_RTEMS_SUBST_IFNOT([host_configdirs],[$1])],
|
||||
[_RTEMS_SUBST_IFNOT([host_configdirs],[$1])]
|
||||
)]
|
||||
)
|
||||
fi
|
||||
|
||||
m4_divert_text([DEFAULTS],
|
||||
@@ -350,24 +344,18 @@ m4_append([_RTEMS_TARGET_CONFIGDIRS_LIST],[ $1])
|
||||
|
||||
if test $build = $host;
|
||||
then
|
||||
if test $host = $target;
|
||||
then
|
||||
_RTEMS_SUBST_IFNOT([build_configdirs],[$1])
|
||||
else
|
||||
_RTEMS_SUBST_IFNOT([target_configdirs],[$1])
|
||||
fi
|
||||
AS_IF([test $host = $target],
|
||||
[_RTEMS_SUBST_IFNOT([build_configdirs],[$1])],
|
||||
[_RTEMS_SUBST_IFNOT([target_configdirs],[$1])]
|
||||
)
|
||||
else
|
||||
if test $host = $target;
|
||||
then
|
||||
_RTEMS_SUBST_IFNOT([host_configdirs],[$1])
|
||||
else
|
||||
if test $build = $target;
|
||||
then
|
||||
_RTEMS_SUBST_IFNOT([build_configdirs],[$1])
|
||||
else
|
||||
_RTEMS_SUBST_IFNOT([target_configdirs],[$1])
|
||||
fi
|
||||
fi
|
||||
AS_IF([test $host = $target],
|
||||
[_RTEMS_SUBST_IFNOT([host_configdirs],[$1])],
|
||||
[AS_IF([test $build = $target],
|
||||
[_RTEMS_SUBST_IFNOT([build_configdirs],[$1])],
|
||||
[_RTEMS_SUBST_IFNOT([target_configdirs],[$1])]
|
||||
)]
|
||||
)
|
||||
fi
|
||||
|
||||
m4_divert_text([DEFAULTS],
|
||||
|
||||
@@ -8,12 +8,12 @@ AC_CONFIG_SRCDIR([c])
|
||||
RTEMS_TOP([.])
|
||||
|
||||
# Abort if trying to build inside of the source tree.
|
||||
if test -f aclocal/version.m4; then
|
||||
AS_IF([test -f aclocal/version.m4],[
|
||||
rm -f config.cache config.log confdefs.h
|
||||
AC_MSG_ERROR([***]
|
||||
[Attempt to build inside of the source tree]
|
||||
[Please use a separate build directory, instead] )
|
||||
fi
|
||||
])
|
||||
|
||||
AC_CANONICAL_TARGET([])
|
||||
AM_INIT_AUTOMAKE([no-define foreign 1.6])
|
||||
|
||||
Reference in New Issue
Block a user