tools/KernelLibs.mk: Force libproxies to be built and installed before applications are build. Otherwise, the applications will not be able to find libproxies. I don't know why this was never seen before. Must be due to recent changes in the apps/ directory. The change is correct in any event.
This commit is contained in:
parent
152ccbd447
commit
f7eee58aee
|
@ -79,6 +79,12 @@ ifeq ($(CONFIG_HAVE_CXX),y)
|
|||
USERLIBS += staging$(DELIM)$(LIBXX)$(LIBEXT)
|
||||
endif
|
||||
|
||||
# Add library for application support.
|
||||
|
||||
ifneq ($(APPDIR),)
|
||||
USERLIBS += staging$(DELIM)libapps$(LIBEXT)
|
||||
endif
|
||||
|
||||
# Add libraries for network support
|
||||
|
||||
ifeq ($(CONFIG_NET),y)
|
||||
|
|
Loading…
Reference in New Issue