Author: imp
Date: Mon Sep 13 01:29:51 2010
New Revision: 212515
URL: http://svn.freebsd.org/changeset/base/212515

Log:
  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).

Modified:
  head/bin/Makefile

Modified: head/bin/Makefile
==============================================================================
--- head/bin/Makefile   Mon Sep 13 01:27:54 2010        (r212514)
+++ head/bin/Makefile   Mon Sep 13 01:29:51 2010        (r212515)
@@ -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>
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to