diff options
| author | Warner Losh <imp@FreeBSD.org> | 2024-02-12 15:10:37 -0700 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2024-02-12 15:59:14 -0700 |
| commit | bd45bbe440f19eeb166a13798c8dcc4dfeb29e36 (patch) | |
| tree | adeddb43ef59a5cbd6cbec0801814b1ae1820aea /rescue | |
| parent | b75bb99621fbebae3b7f56ea01e711333d0455d8 (diff) | |
rescue: Fix after zfsbootcfg addition
Get the library dependencies correct for zfsbootcfg. libzfsbootcfg
depends on a all of these...
Fixes: ac4847e6b0e9
Sponsored by: Netflix
Diffstat (limited to 'rescue')
| -rw-r--r-- | rescue/rescue/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/rescue/rescue/Makefile b/rescue/rescue/Makefile index 4c351e632638..5d5c609eb218 100644 --- a/rescue/rescue/Makefile +++ b/rescue/rescue/Makefile @@ -148,7 +148,13 @@ CRUNCH_LIBS_zfs+= ${LIBBE} \ CRUNCH_LIBS_bectl+= ${CRUNCH_LIBS_zfs} CRUNCH_LIBS_zpool+= ${CRUNCH_LIBS_zfs} CRUNCH_LIBS_zdb+= ${CRUNCH_LIBS_zfs} ${LIBZDB} -CRUNCH_LIBS_zfsbootcfg+=${LIBZFSBOOTENV} +CRUNCH_LIBS_zfsbootcfg+=${LIBZFSBOOTENV} \ + ${LIBZPOOL} \ + ${LIBZFS} \ + ${LIBZUTIL} \ + ${LIBZFS_CORE} \ + ${LIBICP_RESCUE} \ + ${LIBNVPAIR} .else # liblzma needs pthread CRUNCH_LIBS+= -lpthread |
