mirror of
https://github.com/opnsense/src.git
synced 2026-05-26 19:23:04 -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 6dcdd79a251b5e62ff9ce562ad451e92dec39408)
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>
|