Merge pull request #15142 from FRRouting/mergify/bp/stable/8.3/pr-14664

isisd: staticd: need to link directly against libyang (backport #14664)
This commit is contained in:
Donald Sharp 2024-01-16 10:40:37 -05:00 committed by GitHub
commit 8bce49ae1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ ISIS_SOURCES = \
isisd/isis_pfpacket.c \
# end
ISIS_LDADD_COMMON = lib/libfrr.la $(LIBCAP)
ISIS_LDADD_COMMON = lib/libfrr.la $(LIBCAP) $(LIBYANG_LIBS)
# Building isisd

View File

@ -36,7 +36,7 @@ clippy_scan += \
# end
staticd_staticd_SOURCES = staticd/static_main.c
staticd_staticd_LDADD = staticd/libstatic.a lib/libfrr.la $(LIBCAP)
staticd_staticd_LDADD = staticd/libstatic.a lib/libfrr.la $(LIBCAP) $(LIBYANG_LIBS)
nodist_staticd_staticd_SOURCES = \
yang/frr-staticd.yang.c \