summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/ChangeLog5
-rw-r--r--c/Makefile.am2
2 files changed, 6 insertions, 1 deletions
diff --git a/c/ChangeLog b/c/ChangeLog
index 101734ce64..7b5ae08cc6 100644
--- a/c/ChangeLog
+++ b/c/ChangeLog
@@ -1,3 +1,8 @@
+2000-10-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
+
+ * Makefile.am: Make sure $SHELL inside of Makefiles does not get
+ propagated to the BSP-subdirectories if a user specified CONFIG_SHELL.
+
2000-08-10 Joel Sherrill <joel@OARcorp.com>
* ChangeLog: New file.
diff --git a/c/Makefile.am b/c/Makefile.am
index 172af7c870..bda1c9b95d 100644
--- a/c/Makefile.am
+++ b/c/Makefile.am
@@ -22,7 +22,7 @@ SUBDIRS = make . $(RTEMS_BSP)
echo "Configuring RTEMS_BSP=$$i"; \
test -d $$i || mkdir $$i; \
( cd $$i && \
- RTEMS_BSP=$$i $(rtems_bsp_configure) \
+ CONFIG_SHELL=$(SHELL) RTEMS_BSP=$$i $(rtems_bsp_configure) \
&& $(MAKE) $(AM_MAKEFLAGS) preinstall ) \
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
done