diff options
| author | Emmanuel Vadot <manu@FreeBSD.org> | 2022-07-21 14:52:24 +0000 |
|---|---|---|
| committer | Emmanuel Vadot <manu@FreeBSD.org> | 2022-08-16 19:15:12 +0000 |
| commit | 15d781b5323315afaed06fb2f2499f9164e1ef86 (patch) | |
| tree | 7a3569bb98db4eee69b7a61db973db269d7fb7a8 | |
| parent | 4efb514b70ba9acdc27026daf3c8c93917ed4fe9 (diff) | |
lib: Gate libfigpar under MK_DIALOG
libfigpar is only used by dpv and dpv isn't built if WITHOUT_DIALOG
is set.
| -rw-r--r-- | lib/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile index 482e4d603f4b..3f94cbc1f073 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -57,7 +57,6 @@ SUBDIR= ${SUBDIR_BOOTSTRAP} \ libexecinfo \ libexpat \ libfetch \ - libfigpar \ libgcc_eh \ libgcc_s \ libgeom \ @@ -170,7 +169,7 @@ SUBDIR+= clang SUBDIR.${MK_CUSE}+= libcuse SUBDIR.${MK_CXX}+= libdevdctl SUBDIR.${MK_TOOLCHAIN}+=libpe -SUBDIR.${MK_DIALOG}+= libdpv +SUBDIR.${MK_DIALOG}+= libdpv libfigpar SUBDIR.${MK_FILE}+= libmagic SUBDIR.${MK_GPIO}+= libgpio SUBDIR.${MK_GSSAPI}+= libgssapi librpcsec_gss |
