mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-26 11:47:31 +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:
parent
9cbda5febf
commit
9768ccae05
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=212515
13
bin/Makefile
13
bin/Makefile
@ -8,7 +8,6 @@ SUBDIR= cat \
|
|||||||
chio \
|
chio \
|
||||||
chmod \
|
chmod \
|
||||||
cp \
|
cp \
|
||||||
${_csh} \
|
|
||||||
date \
|
date \
|
||||||
dd \
|
dd \
|
||||||
df \
|
df \
|
||||||
@ -29,10 +28,8 @@ SUBDIR= cat \
|
|||||||
ps \
|
ps \
|
||||||
pwait \
|
pwait \
|
||||||
pwd \
|
pwd \
|
||||||
${_rcp} \
|
|
||||||
realpath \
|
realpath \
|
||||||
rm \
|
rm \
|
||||||
${_rmail} \
|
|
||||||
rmdir \
|
rmdir \
|
||||||
setfacl \
|
setfacl \
|
||||||
sh \
|
sh \
|
||||||
@ -43,15 +40,19 @@ SUBDIR= cat \
|
|||||||
uuidgen
|
uuidgen
|
||||||
|
|
||||||
.if ${MK_RCMDS} != "no"
|
.if ${MK_RCMDS} != "no"
|
||||||
_rcp= rcp
|
SUBDIR+= rcp
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if ${MK_SENDMAIL} != "no"
|
.if ${MK_SENDMAIL} != "no"
|
||||||
_rmail= rmail
|
SUBDIR+= rmail
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
.if ${MK_TCSH} != "no"
|
.if ${MK_TCSH} != "no"
|
||||||
_csh= csh
|
SUBDIR+= csh
|
||||||
.endif
|
.endif
|
||||||
|
|
||||||
|
.include <bsd.arch.inc.mk>
|
||||||
|
|
||||||
|
SUBDIR:= ${SUBDIR:O}
|
||||||
|
|
||||||
.include <bsd.subdir.mk>
|
.include <bsd.subdir.mk>
|
||||||
|
Loading…
Reference in New Issue
Block a user