Makefile: platform/Makefile must have BIN_DIR defined on command line even though it is not used. This is because in the Cygwin build, the value of 'BIN_DIR' is passed to 'cygpath'. 'cygpath will fail if BIN_DIR is not defined.
This commit is contained in:
parent
3221072535
commit
5ac037e4f6
4
Makefile
4
Makefile
@ -130,7 +130,7 @@ import:
|
|||||||
$(Q) $(MAKE) .import TOPDIR="$(APPDIR)$(DELIM)import"
|
$(Q) $(MAKE) .import TOPDIR="$(APPDIR)$(DELIM)import"
|
||||||
|
|
||||||
dirlinks:
|
dirlinks:
|
||||||
$(Q) $(MAKE) -C platform dirlinks TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
|
$(Q) $(MAKE) -C platform dirlinks TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" BIN_DIR="$(BIN_DIR)"
|
||||||
|
|
||||||
context_rest: $(foreach SDIR, $(CONFIGURED_APPS), $(SDIR)_context)
|
context_rest: $(foreach SDIR, $(CONFIGURED_APPS), $(SDIR)_context)
|
||||||
|
|
||||||
@ -154,7 +154,7 @@ preconfig: Kconfig
|
|||||||
depend: .depend
|
depend: .depend
|
||||||
|
|
||||||
clean_context:
|
clean_context:
|
||||||
$(Q) $(MAKE) -C platform clean_context TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
|
$(Q) $(MAKE) -C platform clean_context TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)" BIN_DIR="$(BIN_DIR)"
|
||||||
|
|
||||||
clean: $(foreach SDIR, $(CLEANDIRS), $(SDIR)_clean)
|
clean: $(foreach SDIR, $(CLEANDIRS), $(SDIR)_clean)
|
||||||
$(call DELFILE, $(SYMTABSRC))
|
$(call DELFILE, $(SYMTABSRC))
|
||||||
|
Loading…
Reference in New Issue
Block a user