1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-25 11:37:56 +00:00

Merge from tbemd:

Add directory names directly and sort at the end.
Include bsd.arch.inc.mk so we can, in the future, more easily make arch
dependent changes in /bin (unlikely, but is needed for symmetry).
This commit is contained in:
Warner Losh 2010-09-13 01:29:51 +00:00
parent 9cbda5febf
commit 9768ccae05
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=212515

View File

@ -8,7 +8,6 @@ SUBDIR= cat \
chio \
chmod \
cp \
${_csh} \
date \
dd \
df \
@ -29,10 +28,8 @@ SUBDIR= cat \
ps \
pwait \
pwd \
${_rcp} \
realpath \
rm \
${_rmail} \
rmdir \
setfacl \
sh \
@ -43,15 +40,19 @@ SUBDIR= cat \
uuidgen
.if ${MK_RCMDS} != "no"
_rcp= rcp
SUBDIR+= rcp
.endif
.if ${MK_SENDMAIL} != "no"
_rmail= rmail
SUBDIR+= rmail
.endif
.if ${MK_TCSH} != "no"
_csh= csh
SUBDIR+= csh
.endif
.include <bsd.arch.inc.mk>
SUBDIR:= ${SUBDIR:O}
.include <bsd.subdir.mk>