svn commit: r211615 - head/sys/modules/dtrace
Rui Paulo
rpaulo at FreeBSD.org
Sun Aug 22 11:12:07 UTC 2010
Author: rpaulo
Date: Sun Aug 22 11:12:07 2010
New Revision: 211615
URL: http://svn.freebsd.org/changeset/base/211615
Log:
Remove an elif and add an or-clause.
Sponsored by: The FreeBSD Foundation
Modified:
head/sys/modules/dtrace/Makefile
Modified: head/sys/modules/dtrace/Makefile
==============================================================================
--- head/sys/modules/dtrace/Makefile Sun Aug 22 11:09:53 2010 (r211614)
+++ head/sys/modules/dtrace/Makefile Sun Aug 22 11:12:07 2010 (r211615)
@@ -14,9 +14,7 @@ SUBDIR= dtmalloc \
sdt \
systrace
-.if ${MACHINE_ARCH} == "amd64"
-SUBDIR+= fbt
-.elif ${MACHINE_ARCH} == "i386"
+.if ${MACHINE_ARCH} == "amd64" || ${MACHINE_ARCH} == "i386"
SUBDIR+= fbt
.endif
More information about the svn-src-head
mailing list