diff options
author | Robert Watson <rwatson@FreeBSD.org> | 2006-02-18 16:40:31 +0000 |
---|---|---|
committer | Robert Watson <rwatson@FreeBSD.org> | 2006-02-18 16:40:31 +0000 |
commit | 6470320fab52e9b7fa80c054080b95f33294f9d7 (patch) | |
tree | 6231cb58dfb27784ec10a03a2e08b767d42eee04 /usr.sbin/Makefile | |
parent | d8ff22ea7fb86b04c8bbec03bc39716387958b1c (diff) | |
download | src-test2-6470320fab52e9b7fa80c054080b95f33294f9d7.tar.gz src-test2-6470320fab52e9b7fa80c054080b95f33294f9d7.zip |
Notes
Diffstat (limited to 'usr.sbin/Makefile')
-rw-r--r-- | usr.sbin/Makefile | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index 7e0aea42f1ae..c1180ef00bae 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -12,9 +12,9 @@ SUBDIR= ac \ ${_apmd} \ ${_arlcontrol} \ arp \ - audit \ - auditd \ - auditreduce \ + ${_audit} \ + ${_auditd} \ + ${_auditreduce} \ ${_asf} \ ${_atm} \ ${_authpf} \ @@ -122,7 +122,7 @@ SUBDIR= ac \ pppd \ pppstats \ ${_praliases} \ - praudit \ + ${_praudit} \ procctl \ pstat \ pw \ @@ -198,6 +198,13 @@ _sysinstall= sysinstall _atm= atm .endif +.if !defined(NO_AUDIT) +_audit= audit +_auditd= auditd +_auditreduce= auditreduce +_praudit= praudit +.endif + .if !defined(NO_BIND) .if !defined(NO_BIND_DNSSEC) && !defined(NO_CRYPT) _dnssec-keygen= dnssec-keygen |