diff options
author | gjb <gjb@FreeBSD.org> | 2016-02-10 04:00:01 +0000 |
---|---|---|
committer | gjb <gjb@FreeBSD.org> | 2016-02-10 04:00:01 +0000 |
commit | a0704b17a25ad1293d5072f4989e7e093d5d3782 (patch) | |
tree | 5d822800e0166a0133653e52153168a1e0e623e8 /sbin | |
parent | 4e38aaedb8b582e230e546d239ad35fc756b8bab (diff) | |
download | FreeBSD-src-a0704b17a25ad1293d5072f4989e7e093d5d3782.zip FreeBSD-src-a0704b17a25ad1293d5072f4989e7e093d5d3782.tar.gz |
Add devd and routed back to the runtime package instead
of their individual packages based on MK_foo evaluation.
There is no intent to split inet/inet6 or other similar
combinations for package creation, since they are created
during build time.
Noticed/prodded by: lidl
Sponsored by: The FreeBSD Foundation
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/devd/Makefile | 2 | ||||
-rw-r--r-- | sbin/routed/Makefile | 2 | ||||
-rw-r--r-- | sbin/routed/rtquery/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sbin/devd/Makefile b/sbin/devd/Makefile index 8af744e..4e5fa47 100644 --- a/sbin/devd/Makefile +++ b/sbin/devd/Makefile @@ -2,7 +2,7 @@ .include <src.opts.mk> -PACKAGE=devd +PACKAGE=runtime PROG_CXX=devd SRCS= devd.cc token.l parse.y y.tab.h MAN= devd.8 devd.conf.5 diff --git a/sbin/routed/Makefile b/sbin/routed/Makefile index 3a4bf39..c01ab41 100644 --- a/sbin/routed/Makefile +++ b/sbin/routed/Makefile @@ -1,7 +1,7 @@ # Make `routed` for FreeBSD # $FreeBSD$ -PACKAGE=routed +PACKAGE=runtime PROG= routed MAN= routed.8 SRCS= if.c input.c main.c output.c parms.c radix.c rdisc.c table.c trace.c diff --git a/sbin/routed/rtquery/Makefile b/sbin/routed/rtquery/Makefile index 5f8df31..a9893a9 100644 --- a/sbin/routed/rtquery/Makefile +++ b/sbin/routed/rtquery/Makefile @@ -2,7 +2,7 @@ # $Revision: 1.6 $ # $FreeBSD$ -PACKAGE=routed +PACKAGE=runtime PROG= rtquery MAN= rtquery.8 LIBADD= md |