Windows build fixes: Backslash as a delimiter causes problems in pattern subsitutions
This commit is contained in:
parent
4143c8a985
commit
175610de48
@ -37,7 +37,10 @@
|
|||||||
-include $(TOPDIR)/Make.defs
|
-include $(TOPDIR)/Make.defs
|
||||||
|
|
||||||
CONFIG_ARCH_BOARD ?= dummy
|
CONFIG_ARCH_BOARD ?= dummy
|
||||||
DELIM ?= $(strip /)
|
|
||||||
|
# REVISIT: Backslash causes problems in $(COBJS) target
|
||||||
|
# DELIM ?= $(strip /)
|
||||||
|
DELIM := $(strip /)
|
||||||
|
|
||||||
include $(APPDIR)$(DELIM)Make.defs
|
include $(APPDIR)$(DELIM)Make.defs
|
||||||
|
|
||||||
@ -46,11 +49,11 @@ include $(APPDIR)$(DELIM)Make.defs
|
|||||||
|
|
||||||
ifeq ($(DIRLINK),)
|
ifeq ($(DIRLINK),)
|
||||||
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
ifeq ($(CONFIG_WINDOWS_NATIVE),y)
|
||||||
DIRLINK = $(TOPDIR)/tools/link.bat
|
DIRLINK = $(TOPDIR)$(DELIM)tools$(DELIM)link.bat
|
||||||
DIRUNLINK = $(TOPDIR)/tools/unlink.bat
|
DIRUNLINK = $(TOPDIR)$(DELIM)tools$(DELIM)unlink.bat
|
||||||
else
|
else
|
||||||
DIRLINK = $(TOPDIR)/tools/link.sh
|
DIRLINK = $(TOPDIR)$(DELIM)tools$(DELIM)link.sh
|
||||||
DIRUNLINK = $(TOPDIR)/tools/unlink.sh
|
DIRUNLINK = $(TOPDIR)$(DELIM)tools$(DELIM)unlink.sh
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user