summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--c/src/ChangeLog5
-rw-r--r--c/src/automake/host.am8
-rw-r--r--c/src/automake/local.am8
-rw-r--r--c/src/configure.ac3
4 files changed, 5 insertions, 19 deletions
diff --git a/c/src/ChangeLog b/c/src/ChangeLog
index e10fe4a677..356b7e8b3b 100644
--- a/c/src/ChangeLog
+++ b/c/src/ChangeLog
@@ -1,3 +1,8 @@
+2003-08-17 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * configure.ac: Remove stray comments.
+ * automake/local.am, automake/host.am: Remove "debug".
+
2003-08-16 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
Makefile.am: Reflect having moved automake.
diff --git a/c/src/automake/host.am b/c/src/automake/host.am
index 7c31aacc22..b7033e3df0 100644
--- a/c/src/automake/host.am
+++ b/c/src/automake/host.am
@@ -5,14 +5,6 @@
## Once automake is fully integrated these make targets
## and this file will probably be removed
-debug:
- @echo
- @echo "\"make debug\" is obsolete, instead use:"
- @echo " make VARIANT=DEBUG"
- @echo
-
-.PHONY: debug
-
preinstall-am: $(PREINSTALL_FILES)
preinstall: preinstall-am
.PHONY: preinstall preinstall-am
diff --git a/c/src/automake/local.am b/c/src/automake/local.am
index cfd96cf048..4ecc353d5b 100644
--- a/c/src/automake/local.am
+++ b/c/src/automake/local.am
@@ -1,13 +1,5 @@
## $Id$
-debug:
- @echo
- @echo "\"make debug\" is obsolete, instead use:"
- @echo " make VARIANT=DEBUG"
- @echo
-
-.PHONY: debug
-
preinstall-am: $(PREINSTALL_FILES)
preinstall: preinstall-am
.PHONY: preinstall preinstall-am
diff --git a/c/src/configure.ac b/c/src/configure.ac
index b8bfbc1d05..667420e7a3 100644
--- a/c/src/configure.ac
+++ b/c/src/configure.ac
@@ -123,7 +123,6 @@ BSP_SUBDIRS="$BSP_SUBDIRS optman"
RTEMS_CPU_SUBDIRS(lib/libcpu)
if test -d "${srcdir}/lib/libcpu/${RTEMS_CPU}"; then
libcpu_cpu_subdir="${RTEMS_CPU}"
-# BSP_SUBDIRS="$BSP_SUBDIRS lib/libcpu/${RTEMS_CPU}"
else
libcpu_cpu_subdir=
fi
@@ -133,11 +132,9 @@ AC_SUBST(libcpu_cpu_subdir)
# The bare bsp is a special case as it is not under the RTEMS_CPU path
if test "$RTEMS_BSP_FAMILY" = "bare" ; then
AC_CONFIG_SUBDIRS([lib/libbsp/bare])
-# BSP_SUBDIRS="$BSP_SUBDIRS lib/libbsp/bare"
AC_SUBST(libbsp_cpu_subdir,bare)
else
RTEMS_CPU_SUBDIRS([lib/libbsp])
-# BSP_SUBDIRS="$BSP_SUBDIRS lib/libbsp/${RTEMS_CPU}"
AC_SUBST(libbsp_cpu_subdir,$RTEMS_CPU)
fi