diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2002-07-24 01:08:57 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2002-07-24 01:08:57 +0000 |
commit | e104fdd5e62b5b3c72cc793a1518a90ea21b6dcf (patch) | |
tree | 92db636c95e93859443c5b3a8cd3526d2b65d421 /usr.bin | |
parent | f3aa4510c84460f81a1b7b20196416cee5dd2b8e (diff) |
ELF_TOOLCHAIN instead of listing all ELF archs.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index c98e0e3a7be..157481838d1 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.78 2002/05/10 00:10:26 nate Exp $ +# $OpenBSD: Makefile,v 1.79 2002/07/24 01:08:56 art Exp $ .include <bsd.own.mk> @@ -27,9 +27,7 @@ SUBDIR= apply apropos arch asa at aucat audioctl awk banner basename bdes \ SUBDIR+=ypcat ypmatch ypwhich .endif -# Don't use the standard tool chain on the alpha, powerpc, and hppa. -.if (${MACHINE_ARCH} != "alpha" && ${MACHINE_ARCH} != "powerpc" && \ - ${MACHINE_ARCH} != "hppa" && ${MACHINE_ARCH} != "sparc64") +.if (${ELF_TOOLCHAIN} != "yes") SUBDIR+= ar nm ranlib size strip strings .endif |