From 46e8bd7ded82faf30289ba940bca95b4cba0d065 Mon Sep 17 00:00:00 2001 From: rpaulo Date: Sun, 22 Aug 2010 11:12:07 +0000 Subject: Remove an elif and add an or-clause. Sponsored by: The FreeBSD Foundation --- sys/modules/dtrace/Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'sys/modules') diff --git a/sys/modules/dtrace/Makefile b/sys/modules/dtrace/Makefile index ba46878..8fad00c 100644 --- a/sys/modules/dtrace/Makefile +++ b/sys/modules/dtrace/Makefile @@ -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 -- cgit v1.1