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.
This commit is contained in:
Joel Sherrill
2000-10-27 13:25:40 +00:00
parent a6eabdb6b9
commit dc94a8dcb6
2 changed files with 6 additions and 1 deletions

View File

@@ -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.

View File

@@ -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