diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2024-01-16 10:39:39 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-16 10:39:39 -0500 |
| commit | ff77ef528f258764e96a24a90bce9b54aba3247d (patch) | |
| tree | 8b2f11a4e062dc8961403e48253c0b6ed6e1e3b3 | |
| parent | 7b5c8823f4bb6ffdc7a8ec2176ff2c7de5ab8069 (diff) | |
| parent | dcb8995db2abdab777fd59b992170b7a8b9555d5 (diff) | |
Merge pull request #15143 from FRRouting/mergify/bp/stable/8.2/pr-14664stable/8.2
isisd: staticd: need to link directly against libyang (backport #14664)
| -rw-r--r-- | isisd/subdir.am | 2 | ||||
| -rw-r--r-- | staticd/subdir.am | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/isisd/subdir.am b/isisd/subdir.am index 3e5816c16b..1d330f66a4 100644 --- a/isisd/subdir.am +++ b/isisd/subdir.am @@ -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 diff --git a/staticd/subdir.am b/staticd/subdir.am index 62969a0a2a..42e66e4606 100644 --- a/staticd/subdir.am +++ b/staticd/subdir.am @@ -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 \ |
