diff options
author | marcel <marcel@FreeBSD.org> | 2002-11-10 01:01:58 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2002-11-10 01:01:58 +0000 |
commit | ac9f5d9dd0c702c8dc00199da9db44257e6a7727 (patch) | |
tree | 5cc1e442de0a07b5210de85f1457b2ab4eadbf00 /usr.bin/Makefile | |
parent | 9400cb3a690540ae573776409ceeff3881a1811d (diff) | |
download | FreeBSD-src-ac9f5d9dd0c702c8dc00199da9db44257e6a7727.zip FreeBSD-src-ac9f5d9dd0c702c8dc00199da9db44257e6a7727.tar.gz |
o Build truss on all architectures.
o xlint is still excluded from the ia64 build, but now in a way
that doesn't corrupt ordering for other platforms.
Diffstat (limited to 'usr.bin/Makefile')
-rw-r--r-- | usr.bin/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 84f51ff..fb0ceb5 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -7,6 +7,11 @@ # XXX Use GNU versions: apropos bc dc diff grep ld man patch whatis # Moved to secure: bdes # + +.if ${MACHINE_ARCH} != "ia64" +_xlint= xlint +.endif + SUBDIR= alias \ apply \ asa \ @@ -165,6 +170,7 @@ SUBDIR= alias \ tr \ true \ truncate \ + truss \ tset \ tsort \ tty \ @@ -196,6 +202,7 @@ SUBDIR= alias \ write \ xargs \ xinstall \ + ${_xlint} \ xstr \ yacc \ yes \ @@ -238,11 +245,6 @@ SUBDIR+=doscmd \ SUBDIR+=uac .endif -# Things which don't compile on new platforms yet: -.if ${MACHINE_ARCH} != "ia64" -SUBDIR+=truss xlint -.endif - .if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) SUBDIR+=chkey newkey .endif |