Author: andrew
Date: Tue Apr 14 10:15:58 2015
New Revision: 281522
URL: https://svnweb.freebsd.org/changeset/base/281522

Log:
  Disable truss, gprof, and lint on arm64, they don't build.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/usr.bin/Makefile

Modified: head/usr.bin/Makefile
==============================================================================
--- head/usr.bin/Makefile       Tue Apr 14 09:58:58 2015        (r281521)
+++ head/usr.bin/Makefile       Tue Apr 14 10:15:58 2015        (r281522)
@@ -284,8 +284,10 @@ SUBDIR+=   iscsictl
 
 .if ${MK_KDUMP} != "no"
 SUBDIR+=        kdump
+.if ${MACHINE_ARCH} != "aarch64" # ARM64TODO truss does not build
 SUBDIR+=        truss
 .endif
+.endif
 
 .if ${MK_KERBEROS_SUPPORT} != "no"
 SUBDIR+=       compile_et
@@ -382,13 +384,17 @@ SUBDIR+=  c89
 SUBDIR+=       c99
 SUBDIR+=       ctags
 SUBDIR+=       file2c
+.if ${MACHINE_ARCH} != "aarch64" # ARM64TODO gprof does not build
 SUBDIR+=       gprof
+.endif
 SUBDIR+=       indent
 SUBDIR+=       lex
 SUBDIR+=       mkstr
 SUBDIR+=       rpcgen
 SUBDIR+=       unifdef
+.if ${MACHINE_ARCH} != "aarch64" # ARM64TODO xlint does not build
 SUBDIR+=       xlint
+.endif
 SUBDIR+=       xstr
 SUBDIR+=       yacc
 .endif
_______________________________________________
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