From 668dbd57c12c86e4369ce8684f38a2368e362b5f Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Mon, 1 Sep 2008 18:03:09 +0000 Subject: [PATCH] Truss and gprof doesn't build for MIPS. --- usr.bin/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/usr.bin/Makefile b/usr.bin/Makefile index f1b54d01e95d..6c4eb228baa3 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -233,7 +233,7 @@ SUBDIR= alias \ ${_ypmatch} \ ${_ypwhich} -.if ${MACHINE_ARCH} != "arm" +.if ${MACHINE_ARCH} != "arm" && ${MACHINE_ARCH} != "mips" _truss= truss .endif @@ -299,7 +299,9 @@ _vacation= vacation _ar= ar _c89= c89 _c99= c99 +.if ${MACHINE_ARCH} != "mips" _gprof= gprof +.endif _lex= lex _xlint= xlint _yacc= yacc