diff options
author | yar <yar@FreeBSD.org> | 2006-07-27 17:50:05 +0000 |
---|---|---|
committer | yar <yar@FreeBSD.org> | 2006-07-27 17:50:05 +0000 |
commit | 7f4c5045cc52a268fa63529ec47833432fa8c4df (patch) | |
tree | b4ce0edd0c4013173d36e3a31082125b00ec1a2b /sbin/Makefile | |
parent | 224bf2d12c0050c5ea941df9e9cfc2cef71c6021 (diff) | |
download | FreeBSD-src-7f4c5045cc52a268fa63529ec47833432fa8c4df.zip FreeBSD-src-7f4c5045cc52a268fa63529ec47833432fa8c4df.tar.gz |
rtsol is just a stripped-down version of rtsold and as such it should
be built only if MK_INET6 is true: it's specific to IPv6.
Pointed out by: ume
Diffstat (limited to 'sbin/Makefile')
-rw-r--r-- | sbin/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/Makefile b/sbin/Makefile index 97e3d7c..23d3661 100644 --- a/sbin/Makefile +++ b/sbin/Makefile @@ -78,7 +78,7 @@ SUBDIR= adjkerntz \ restore \ route \ routed \ - rtsol \ + ${_rtsol} \ savecore \ ${_sconfig} \ setkey \ @@ -111,6 +111,7 @@ _pflogd= pflogd .if ${MK_INET6} != "no" _ping6= ping6 +_rtsol= rtsol .endif .if ${MACHINE_ARCH} == "i386" |