diff options
author | obrien <obrien@FreeBSD.org> | 2002-04-08 20:36:39 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-04-08 20:36:39 +0000 |
commit | acb8992dc365ee9f45e997e701eeb6dc8e35d0e8 (patch) | |
tree | c1db2795a03a2c89bc1dad2771a9737ba8f87c1b /usr.bin | |
parent | 3d5625e8b9085f2c22b7acb92362acaad573abda (diff) | |
download | FreeBSD-src-acb8992dc365ee9f45e997e701eeb6dc8e35d0e8.zip FreeBSD-src-acb8992dc365ee9f45e997e701eeb6dc8e35d0e8.tar.gz |
Some things don't compile on ia64 and sparc64 yet.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index 021e65b..04baf18 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -53,7 +53,6 @@ SUBDIR= apply \ fsync \ ftp \ gencat \ - getconf \ getopt \ gprof \ head \ @@ -232,9 +231,13 @@ SUBDIR+=ar \ SUBDIR+=uac .endif -.if ${MACHINE_ARCH} != "ia64" +# Things which don't compile on new platforms yet: +.if ${MACHINE_ARCH} != "sparc64" && ${MACHINE_ARCH} != "ia64" SUBDIR+=xlint .endif +.if ${MACHINE_ARCH} != "sparc64" +SUBDIR+=getconf +.endif .if exists(${.CURDIR}/../crypto) && !defined(NOCRYPT) && !defined(NO_OPENSSL) SUBDIR+=chkey newkey |