diff options
author | Luiz Souza <luiz@netgate.com> | 2017-07-17 12:51:19 -0500 |
---|---|---|
committer | Luiz Souza <luiz@netgate.com> | 2017-07-17 12:51:19 -0500 |
commit | f873d15ebf1ab8674a347f0ab8292ed2954470b7 (patch) | |
tree | 44b01296225ab164231f61667a4b6049e3de178b /lib/Makefile | |
parent | bd302c9ec7c180f660fa00cba5eeb9fc5af729f7 (diff) | |
parent | d0036f09237f420d5c56063a793387a35da2cf2c (diff) | |
download | FreeBSD-src-f873d15ebf1ab8674a347f0ab8292ed2954470b7.zip FreeBSD-src-f873d15ebf1ab8674a347f0ab8292ed2954470b7.tar.gz |
Merge remote-tracking branch 'origin/stable/11' into devel-11
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index 229d064..3a48482 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -46,9 +46,9 @@ SUBDIR= ${SUBDIR_BOOTSTRAP} \ libdevdctl \ libdevinfo \ libdevstat \ - libdpv \ libdwarf \ libedit \ + ${_libefivar} \ ${_libelftc} \ libevent \ libexecinfo \ @@ -192,6 +192,8 @@ _libelftc= libelftc _libpe= libpe .endif +SUBDIR.${MK_DIALOG}+= libdpv + .if ${MK_FILE} != "no" _libmagic= libmagic .endif @@ -232,6 +234,10 @@ _libcxxrt= libcxxrt _libcplusplus= libc++ .endif +.if ${MK_EFI} != "no" +_libefivar= libefivar +.endif + .if ${MK_LIBTHR} != "no" _libthr= libthr .endif |