diff options
| author | Marcel Moolenaar <marcel@FreeBSD.org> | 2008-07-19 18:21:52 +0000 |
|---|---|---|
| committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2008-07-19 18:21:52 +0000 |
| commit | 42f17e8ce40ccc35a6351de188a1b630a46daff1 (patch) | |
| tree | 8d567834805b8bc40557572b93c417af852a3b06 | |
| parent | 1a4b919f8e6dd82ede787172981008b4356ea4bb (diff) | |
Notes
| -rw-r--r-- | ObsoleteFiles.inc | 6 | ||||
| -rw-r--r-- | usr.sbin/Makefile | 5 |
2 files changed, 10 insertions, 1 deletions
diff --git a/ObsoleteFiles.inc b/ObsoleteFiles.inc index 0c09151ecdce..3585a8782263 100644 --- a/ObsoleteFiles.inc +++ b/ObsoleteFiles.inc @@ -14,6 +14,12 @@ # The file is partitioned: OLD_FILES first, then OLD_LIBS and OLD_DIRS last. # +# 20080719: sade(8) removed on all but amd64, i386 and sparc64 +.if ${TARGET_ARCH} != "amd64" && ${TARGET_ARCH} != "i386" && \ + ${TARGET_ARCH} != "sparc64" +OLD_FILES+=usr/sbin/sade +OLD_FILES+=usr/share/man/man8/sade.8.gz +.endif # 20080706: bsdlabel(8) removed on powerpc .if ${TARGET_ARCH} == "powerpc" OLD_FILES+=sbin/bsdlabel diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index 61f99c637852..a3190da9dc69 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -154,7 +154,7 @@ SUBDIR= ac \ ${_rtsold} \ rwhod \ sa \ - sade \ + ${_sade} \ ${_sendmail} \ setfib \ setfmac \ @@ -309,6 +309,7 @@ _mount_smbfs= mount_smbfs _mptable= mptable _ndiscvt= ndiscvt _pnpinfo= pnpinfo +_sade= sade _sicontrol= sicontrol _spkrtest= spkrtest _zzz= zzz @@ -341,6 +342,7 @@ _mount_nwfs= mount_nwfs _mount_smbfs= mount_smbfs _mptable= mptable _ndiscvt= ndiscvt +_sade= sade _sicontrol= sicontrol _spkrtest= spkrtest _zzz= zzz @@ -364,6 +366,7 @@ _ofwdump= ofwdump .if ${MACHINE_ARCH} == "sparc64" _eeprom= eeprom _ofwdump= ofwdump +_sade= sade .endif .include <bsd.subdir.mk> |
