diff options
author | jb <jb@FreeBSD.org> | 1998-08-20 20:47:49 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-08-20 20:47:49 +0000 |
commit | d724e3649c785d7f3342df2b1f5a40aa41752beb (patch) | |
tree | 8447c101690ffdaf5f23b8fb708c5e927827864e /sbin | |
parent | e4bdd1856a706ddcc640cf6bbf86a3e2395dceac (diff) | |
download | FreeBSD-src-d724e3649c785d7f3342df2b1f5a40aa41752beb.zip FreeBSD-src-d724e3649c785d7f3342df2b1f5a40aa41752beb.tar.gz |
Fix the machine dependent SUBDIR I removed by mistake in the last commit.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sbin/Makefile b/sbin/Makefile index 77f666f..9d0cd3a 100644 --- a/sbin/Makefile +++ b/sbin/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.5 (Berkeley) 3/31/94 -# $Id: Makefile,v 1.49 1998/07/06 20:05:41 rnordier Exp $ +# $Id: Makefile,v 1.50 1998/08/15 13:21:41 jb Exp $ # XXX MISSING: icheck ncheck @@ -11,6 +11,10 @@ SUBDIR= badsect ccdconfig clri disklabel dmesg dset dump dumpfs dumpon \ ping quotacheck reboot restore route routed savecore scsiformat \ shutdown slattach startslip spppcontrol swapon tunefs umount +.if exists(${.CURDIR}/${MACHINE}) +SUBDIR+= ${MACHINE} +.endif + .if ${MACHINE_ARCH} == "i386" SUBDIR+=adjkerntz ldconfig scsi .endif |