[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [PATCH] tools/libs: fix build of stubdoms
In case abi-dumper is available the stubdom builds will fail due to a false dependency on dynamic loadable libraries. Fix that. Fixes: d7c9f7a7a3959913b4 ("tools/libs: Write out an ABI analysis when abi-dumper is available") Signed-off-by: Juergen Gross <jgross@xxxxxxxx> --- tools/libs/libs.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/libs/libs.mk b/tools/libs/libs.mk index 84130ccbaf..ebdb2a4782 100644 --- a/tools/libs/libs.mk +++ b/tools/libs/libs.mk @@ -98,10 +98,12 @@ lib$(LIB_FILE_NAME).so.$(MAJOR).$(MINOR): $(PIC_OBJS) libxen$(LIBNAME).map # If abi-dumper is available, write out the ABI analysis ifneq ($(ABI_DUMPER),) +ifneq ($(nosharedlibs),y) libs: $(PKG_ABI) $(PKG_ABI): lib$(LIB_FILE_NAME).so.$(MAJOR).$(MINOR) headers.lst $(ABI_DUMPER) $< -o $@ -public-headers headers.lst -lver $(MAJOR).$(MINOR) endif +endif .PHONY: install install: build -- 2.26.2
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |