1
0

Update to latest DMBS, fix XPLAINBridge project compilation errors on full tree build.

This commit is contained in:
Dean Camera
2016-07-17 17:30:55 +10:00
parent 0f470dc8b4
commit def392aca0
3 changed files with 5 additions and 7 deletions

View File

@@ -16,7 +16,7 @@ DMBS_BUILD_PROVIDED_MACROS += DMBS_CHECK_VERSION ERROR_IF_UNSET ERROR_IF_EMPTY E
SHELL = /bin/sh
# Current DMBS release version
DMBS_VERSION := 20160403
DMBS_VERSION := 20160717
# Macro to check the DMBS version, aborts if the given DMBS version is below the current version
DMBS_CHECK_VERSION ?= $(if $(filter-out 0, $(shell test $(DMBS_VERSION) -lt $(1); echo $$?)), , $(error DMBS version $(1) or newer required, current version is $(DMBS_VERSION)))

View File

@@ -96,7 +96,7 @@ ifneq ($(OBJDIR),.)
endif
# Create the output object file directory if it does not exist and add it to the virtual path list
$(shell mkdir $(OBJDIR) 2> /dev/null)
$(shell mkdir -p $(OBJDIR) 2> /dev/null)
VPATH += $(dir $(SRC))
endif