Changeset 247874ae in rtems
- Timestamp:
- 07/22/02 06:01:31 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 8510772
- Parents:
- c08c6b5
- Location:
- c/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ChangeLog
rc08c6b5 r247874ae 1 2002-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 1 8 2002-07-05 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 9 -
c/src/acinclude.m4
rc08c6b5 r247874ae 1 1 # $Id$ 2 2 # 3 # Some hacks for handling powerpc-exceptionsubdirectories3 # Some hacks for handling special config subdirectories 4 4 # 5 5 # Note: Consider this file a temporary band-aid until a better, more general … … 67 67 sed 's,^\./,,;s,[[^/]]$,&/,;s,[[^/]]*/,../,g'` 68 68 69 echo "*** dots :$ac_dots"70 echo "*** src :$srcdir"71 69 case $srcdir in 72 70 .) # No --srcdir option. We are building in place. … … 77 75 ac_sub_srcdir=$ac_dots$srcdir/$ac_subdir ;; 78 76 esac 79 80 echo "*** source:$ac_sub_sourcedir"81 echo "*** build :$ac_sub_builddir"82 echo "*** src :$ac_sub_srcdir"83 echo "*** pwd :"`pwd`84 77 85 78 # Check for guested configure; otherwise get Cygnus style configure. -
c/src/configure.ac
rc08c6b5 r247874ae 28 28 29 29 ## Note: the order of the directories below is essential 30 AC_CONFIG_SUBDIRS( make)30 AC_CONFIG_SUBDIRS([make]) 31 31 32 ## Exclude exec from buildingif multilibs are enabled32 ## Configure ${srcdir}/../../cpukit as exec/ if multilibs are enabled 33 33 AS_IF([test x"$multilib" = x"no"],[ 34 34 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="../../"]) 37 36 AC_SUBST([exec],[exec]) 38 37 ]) … … 43 42 AC_CONFIG_SUBDIRS(libmisc) 44 43 45 if test "$RTEMS_CPU" != "unix"; then 44 AS_IF([test "$RTEMS_CPU" != "unix"],[ 46 45 ## HACK: Suppress libchip for unix 47 46 AC_CONFIG_SUBDIRS(libchip) 48 fi 47 ]) 49 48 50 49 if test "$HAS_NETWORKING" = "yes"; then
Note: See TracChangeset
for help on using the changeset viewer.