2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>

* Makefile.am: Use mkdir_p instead of mkinstalldirs.
This commit is contained in:
Ralf Corsepius
2003-12-12 15:27:16 +00:00
parent fc0ec6975f
commit a6f212eadd
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Use mkdir_p instead of mkinstalldirs.
2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* configure.ac: Require automake >= 1.8, autoconf >= 2.59.

View File

@@ -19,7 +19,7 @@ SUBDIRS = . $(RTEMS_BSP)
@set fnord $(MAKEFLAGS); amf=$$2; \
test -n "${RTEMS_BSP}" && for i in ${RTEMS_BSP}; do \
echo "Configuring RTEMS_BSP=$$i"; \
$(mkinstalldirs) $$i; \
$(mkdir_p) $$i; \
( cd $$i && \
CONFIG_SHELL=$(SHELL) RTEMS_BSP=$$i $(rtems_bsp_configure) ) \
|| case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \