From 817466c863f12d485cff985a0a67aaa1d4ca816b Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 14 Jun 1999 18:29:09 +0000 Subject: Patch ("FIX: MKDIR/INSTALL_VARIANT") from Ralf Corsepius : This patch removes MKDIR from RTEMS source tree and fixes another small bug in the definition of INSTALL_VARIANT (cf. to the patch itself for details, it should be self-explanatory) After applying the patch please do: cvs rm aclocal/mkdir.m4 ./autogen --- make/host.cfg.in | 4 ++-- make/main.cfg | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'make') diff --git a/make/host.cfg.in b/make/host.cfg.in index 4814b2169d..bcbcf4eec6 100644 --- a/make/host.cfg.in +++ b/make/host.cfg.in @@ -25,7 +25,7 @@ RM=@RM@ -f CP=@CP@ MV=@MV@ LN=@LN@ -MKDIR=@MKDIR@ +MKDIR=mkdir CHMOD=@CHMOD@ SED=@SED@ M4=@M4@ @@ -34,7 +34,7 @@ M4=@M4@ PACKHEX=$(PROJECT_TOOLS)/packhex INSTALL_CHANGE=$(PROJECT_TOOLS)/install-if-change -INSTALL_VARIANT=$(PROJECT_TOOLS)/install-if-change -V "$(LIB_VARIANT)" +INSTALL_VARIANT=$(INSTALL_CHANGE) -V "$(LIB_VARIANT)" # FIXME: HACK for a bug in cygwin-hosted egcs which returns a mixture # of '\\' and '/' as path separators. diff --git a/make/main.cfg b/make/main.cfg index a2599ce2ab..e74ece1c2b 100644 --- a/make/main.cfg +++ b/make/main.cfg @@ -67,7 +67,7 @@ RECURSE_TARGETS=all clean protos get clobber depend install \ $(TARGET_VARIANTS) $(TARGET_VARIANTS:%=%_install) ${ARCH}: - test -d ${ARCH} || $(MKDIR) ${ARCH} + test -d ${ARCH} || mkdir ${ARCH} # general purpose forcing dependency; try to use .PHONY instead -- cgit v1.2.3