Changeset 247874ae in rtems


Ignore:
Timestamp:
07/22/02 06:01:31 (21 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
8510772
Parents:
c08c6b5
Message:

2002-07-22 Ralf Corsepius <corsepiu@…>

  • acinclude.m4: Cleanups.
  • configure.ac: Build ${srcdir}/../../cpukit/ as ./exec/ instead of ${srcdir}/exec/. Further adaptations to autoconf >= 2.50.
Location:
c/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/ChangeLog

    rc08c6b5 r247874ae  
     12002-07-22      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
     2
     3        * acinclude.m4: Cleanups.
     4        * configure.ac: Build ${srcdir}/../../cpukit/ as ./exec/ instead of
     5        ${srcdir}/exec/.
     6        Further adaptations to autoconf >= 2.50.
     7
    182002-07-05      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    29
  • c/src/acinclude.m4

    rc08c6b5 r247874ae  
    11# $Id$
    22#
    3 # Some hacks for handling powerpc-exception subdirectories
     3# Some hacks for handling special config subdirectories
    44#
    55# Note: Consider this file a temporary band-aid until a better, more general
     
    6767             sed 's,^\./,,;s,[[^/]]$,&/,;s,[[^/]]*/,../,g'`
    6868
    69 echo "*** dots  :$ac_dots"
    70 echo "*** src   :$srcdir"
    7169    case $srcdir in
    7270    .) # No --srcdir option.  We are building in place.
     
    7775      ac_sub_srcdir=$ac_dots$srcdir/$ac_subdir ;;
    7876    esac
    79 
    80 echo "*** source:$ac_sub_sourcedir"
    81 echo "*** build :$ac_sub_builddir"
    82 echo "*** src   :$ac_sub_srcdir"
    83 echo "*** pwd   :"`pwd`
    8477
    8578    # Check for guested configure; otherwise get Cygnus style configure.
  • c/src/configure.ac

    rc08c6b5 r247874ae  
    2828
    2929## Note: the order of the directories below is essential
    30 AC_CONFIG_SUBDIRS(make)
     30AC_CONFIG_SUBDIRS([make])
    3131
    32 ## Exclude exec from building if multilibs are enabled
     32## Configure ${srcdir}/../../cpukit as exec/ if multilibs are enabled
    3333AS_IF([test x"$multilib" = x"no"],[
    3434  RTEMS_CHECK_MULTIPROCESSING
    35 # RTEMS_CONFIG_SUBDIR([exec],[../../cpukit],[--with-project-root="../../"])
    36   RTEMS_CONFIG_SUBDIR([exec],[exec],[--with-project-root="../../"])
     35  RTEMS_CONFIG_SUBDIR([exec],[../../cpukit],[--with-project-root="../../"])
    3736  AC_SUBST([exec],[exec])
    3837])
     
    4342AC_CONFIG_SUBDIRS(libmisc)
    4443
    45 if test "$RTEMS_CPU" != "unix"; then
     44AS_IF([test "$RTEMS_CPU" != "unix"],[
    4645## HACK: Suppress libchip for unix
    4746  AC_CONFIG_SUBDIRS(libchip)
    48 fi
     47])
    4948
    5049if test "$HAS_NETWORKING" = "yes"; then
Note: See TracChangeset for help on using the changeset viewer.