summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-10-27 13:25:40 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-10-27 13:25:40 +0000
commitdc94a8dcb61859780b4627301c91189616faa085 (patch)
treead53d4c0db1c217f84536a2b8532efb96940d37f
parent2000-10-26 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-dc94a8dcb61859780b4627301c91189616faa085.tar.bz2
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.
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