mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
This will make it easier to manage address selection policies of vnet
jails, especially for those light weighted OCI containers or slim jails.
Requested by: dfr
Reviewed by: dfr, markj
MFC after: 1 week
Relnotes: yes
Differential Revision: https://reviews.freebsd.org/D48679
(cherry picked from commit 6dcdd79a25)
12 lines
161 B
Makefile
12 lines
161 B
Makefile
.include <src.opts.mk>
|
|
|
|
PACKAGE= runtime
|
|
PROG= ip6addrctl
|
|
MAN= ip6addrctl.8
|
|
|
|
.if ${MK_JAIL} != "no"
|
|
CFLAGS+= -DJAIL
|
|
LIBADD+= jail
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|