mk: fix combined library build
The combined lib was being created after building the lib root dir.
With the new directory hierarchy, it should be created after the
drivers root dir instead.
Fixes: 980ed498eb
("drivers: create new directory")
Signed-off-by: Sergio Gonzalez Monroy <sergio.gonzalez.monroy@intel.com>
Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
Tested-by: Li Wei <lw@cn.fujitsu.com>
This commit is contained in:
parent
c1715402df
commit
d2c0806724
@ -93,7 +93,7 @@ $(ROOTDIRS-y):
|
||||
@[ -d $(BUILDDIR)/$@ ] || mkdir -p $(BUILDDIR)/$@
|
||||
@echo "== Build $@"
|
||||
$(Q)$(MAKE) S=$@ -f $(RTE_SRCDIR)/$@/Makefile -C $(BUILDDIR)/$@ all
|
||||
@if [ $@ = lib -a $(RTE_BUILD_COMBINE_LIBS) = y ]; then \
|
||||
@if [ $@ = drivers -a $(RTE_BUILD_COMBINE_LIBS) = y ]; then \
|
||||
$(MAKE) -f $(RTE_SDK)/lib/Makefile sharelib; \
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user