mirror of
https://github.com/apache/nuttx.git
synced 2026-05-28 20:08:15 +08:00
build: Fix dependencies of kernel targets.
Targets build during the kernel phase did not have their dependencies specified and thus they were not rebuilt after their dependencies have changed, for example by changing options in menuconfig. Signed-off-by: Abdelatif Guettouche <abdelatif.guettouche@espressif.com>
This commit is contained in:
committed by
Xiang Xiao
parent
2a8b2cad17
commit
4896623be2
+2
-2
@@ -62,8 +62,8 @@ $(BIN): $(OBJS)
|
||||
# Memory manager for the kernel phase of the two-pass kernel build
|
||||
|
||||
ifneq ($(BIN),$(KBIN))
|
||||
$(KBIN):
|
||||
$(Q) $(MAKE) $(KBIN) BIN=$(KBIN) BINDIR=kbin EXTRAFLAGS="$(EXTRAFLAGS)"
|
||||
$(KBIN): $(OBJS)
|
||||
$(Q) $(MAKE) $(KBIN) BIN=$(KBIN) EXTRAFLAGS="$(EXTRAFLAGS)"
|
||||
endif
|
||||
|
||||
# Dependencies
|
||||
|
||||
Reference in New Issue
Block a user