diff options
author | ngie <ngie@FreeBSD.org> | 2015-02-05 20:45:50 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2015-02-05 20:45:50 +0000 |
commit | b866a7eec0d2b5c3b0b8c5615333e856f872fc26 (patch) | |
tree | 1c5fcb1d7cafc0947f3d610844b08ffa3374a0ac /etc/rc.d | |
parent | 74a0afe24caada81df3966d2332111f7ae2af2af (diff) | |
download | FreeBSD-src-b866a7eec0d2b5c3b0b8c5615333e856f872fc26.zip FreeBSD-src-b866a7eec0d2b5c3b0b8c5615333e856f872fc26.tar.gz |
Use FILES+= idiom instead of _inetd when referencing inetd rc.d script
This was a discrepancy between ^/projects/building-blocks and ^/head that I
didn't resolve before committing the change to ^/head
Pointyhat to: me
Reported by: jhb
MFC after: 20 days
X-MFC with: r278249
Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'etc/rc.d')
-rw-r--r-- | etc/rc.d/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/rc.d/Makefile b/etc/rc.d/Makefile index 92a8202..8c37a30 100644 --- a/etc/rc.d/Makefile +++ b/etc/rc.d/Makefile @@ -194,7 +194,7 @@ FILES+= hastd .endif .if ${MK_INETD} != "no" -_inetd= inetd +FILES+= inetd .endif .if ${MK_ISCSI} != "no" |