diff options
author | trhodes <trhodes@FreeBSD.org> | 2005-03-02 11:53:22 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2005-03-02 11:53:22 +0000 |
commit | 792676bbc2c9c56a3676ca814cde9deb96a83da8 (patch) | |
tree | a8ef58078677e0c51a13aeead6bffc5d16d6fc2c /libexec/Makefile | |
parent | 271a50396925d26b7554c390da5882b7ad4c3399 (diff) | |
download | FreeBSD-src-792676bbc2c9c56a3676ca814cde9deb96a83da8.zip FreeBSD-src-792676bbc2c9c56a3676ca814cde9deb96a83da8.tar.gz |
Wrap BSD r* commands in NO_RCMDS.
Change NO_RCMDNS to NO_RCMDS and do the switch in bsd.compat.mk.
Discussed with: ru, nectar
Diffstat (limited to 'libexec/Makefile')
-rw-r--r-- | libexec/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/libexec/Makefile b/libexec/Makefile index 56919cf..defc296 100644 --- a/libexec/Makefile +++ b/libexec/Makefile @@ -16,14 +16,14 @@ SUBDIR= atrun \ pt_chown \ rbootd \ revnetgroup \ - rexecd \ - rlogind \ + ${_rexecd} \ + ${_rlogind} \ rpc.rquotad \ rpc.rstatd \ rpc.rusersd \ rpc.rwalld \ rpc.sprayd \ - rshd \ + ${_rshd} \ ${_rtld-elf} \ save-entropy \ ${_smrsh} \ @@ -46,6 +46,12 @@ _ftp-proxy= ftp-proxy _rtld-elf= rtld-elf .endif +.if !defined(NO_RCMDS) +_rexecd= rexecd +_logind= rlogind +_rshd= rshd +.endif + .if !defined(NO_SENDMAIL) _mail.local= mail.local _smrsh= smrsh |