From 43ab607e8af00095ffef159d454538ff8a0f2332 Mon Sep 17 00:00:00 2001 From: jtb Date: Thu, 24 Jul 2003 16:01:41 +0000 Subject: Fix logic in determining if pthreads is required. --- lang/icon/Makefile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'lang/icon') diff --git a/lang/icon/Makefile b/lang/icon/Makefile index 6bcb80aa74c..6a5422f7e62 100644 --- a/lang/icon/Makefile +++ b/lang/icon/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.28 2003/07/17 21:44:35 grant Exp $ +# $NetBSD: Makefile,v 1.29 2003/07/24 16:01:41 jtb Exp $ DISTNAME= icon.v942src PKGNAME= icon-9.4.2 @@ -16,10 +16,11 @@ CONFIGURE_TARGET= X-Configure ALL_TARGET= All TEST_TARGET= Test -.if (${MACHINE_ARCH} != "alpha") || (${MACHINE_ARCH} != "i386") || \ - (${MACHINE_ARCH} != "sparc") || (${MACHINE_ARCH} != "powerpc") || \ - (${MACHINE_ARCH} != "mipseb") || (${MACHINE_ARCH} != "mipsel") || \ - (${MACHINE_ARCH} != "m68k") || (${MACHINE_ARCH} != "vax") +.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "i386") || \ + (${MACHINE_ARCH} == "sparc") || (${MACHINE_ARCH} == "powerpc") || \ + (${MACHINE_ARCH} == "mipseb") || (${MACHINE_ARCH} == "mipsel") || \ + (${MACHINE_ARCH} == "m68k") || (${MACHINE_ARCH} == "vax") +.else PTHREAD_OPTS+= require native .include "../../mk/pthread.buildlink2.mk" .endif -- cgit v1.2.3