summaryrefslogtreecommitdiffstats
path: root/aclocal
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-10-23 15:41:52 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-10-23 15:41:52 +0000
commit532b7d1285f90923fda45c674b5150dab9055812 (patch)
tree83746f2ccc5aa49cc06c36ac02c8e7def83c0e10 /aclocal
parent2003-10-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-532b7d1285f90923fda45c674b5150dab9055812.tar.bz2
2003-10-23 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* aclocal/config-subdirs.m4: Remove. * Makefile.am: Reflect changes above.
Diffstat (limited to 'aclocal')
-rw-r--r--aclocal/config-subdirs.m434
1 files changed, 0 insertions, 34 deletions
diff --git a/aclocal/config-subdirs.m4 b/aclocal/config-subdirs.m4
deleted file mode 100644
index 6f9360bc80..0000000000
--- a/aclocal/config-subdirs.m4
+++ /dev/null
@@ -1,34 +0,0 @@
-dnl $Id$
-
-dnl
-dnl Misc utility macros for subdir handling to work around missing abilities
-dnl in autoconf, automake and structural issues with RTEMS
-dnl
-dnl Contains parts derived from autoconf-2.13 AC_OUTPUT_SUBDIRS and Cygnus'
-dnl configure.in.
-dnl
-
-dnl
-dnl _AC_DOTS(PATH)
-dnl
-AC_DEFUN(_AC_DOTS,[
-# A "../" for each directory in $1.
- ac_dots=`echo $1 | \
- sed -e 's%^\./%%' -e 's%[[^/]]$%&/%' -e 's%[[^/]]*/%../%g'`
-])
-
-dnl
-dnl _RTEMS_ADJUST_SRCDIR(REVAR,CONFIG_DIR[,TARGET_SUBDIR])
-dnl
-AC_DEFUN(_RTEMS_ADJUST_SRCDIR,[
- _AC_DOTS(ifelse([$3], ,[$2],[$3/$2]))
-
- case "$srcdir" in
- .) # No --srcdir option. We are building in place.
- $1=$srcdir ;;
- [[\\/]]* | ?:[[\\/]]*) # Absolute path.
- $1=$srcdir/$2 ;;
- *) # Relative path.
- $1=$ac_dots$srcdir/$2 ;;
- esac
-])