diff options
Diffstat (limited to 'usr.bin/Makefile')
-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 |