summaryrefslogtreecommitdiff
path: root/mk/pthread.buildlink2.mk
diff options
context:
space:
mode:
authorgrant <grant>2003-07-10 23:12:40 +0000
committergrant <grant>2003-07-10 23:12:40 +0000
commit37f61392b8b9df2bc957d75bab8a71d4f313faf1 (patch)
tree3b170941bd2adcea547cc352428ae564fed60466 /mk/pthread.buildlink2.mk
parent63bd52482ffc15f9a0f64b049d2a8aae7490b4af (diff)
downloadpkgsrc-37f61392b8b9df2bc957d75bab8a71d4f313faf1.tar.gz
minor style nit
Diffstat (limited to 'mk/pthread.buildlink2.mk')
-rw-r--r--mk/pthread.buildlink2.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/mk/pthread.buildlink2.mk b/mk/pthread.buildlink2.mk
index 9cfab7d9c8a..bef393fadc3 100644
--- a/mk/pthread.buildlink2.mk
+++ b/mk/pthread.buildlink2.mk
@@ -1,4 +1,4 @@
-# $NetBSD: pthread.buildlink2.mk,v 1.11 2003/07/10 23:10:08 grant Exp $
+# $NetBSD: pthread.buildlink2.mk,v 1.12 2003/07/10 23:12:40 grant Exp $
#
# The pthreads strategy for pkgsrc is to "bless" a particular pthread
# package as the Official Pthread Replacement (OPR). A package that uses
@@ -14,7 +14,7 @@
# #
# .include "../../mk/pthread.buildlink2.mk"
#
-# .if defined(PTHREAD_TYPE) && (${PTHREAD_TYPE} == "none")
+# .if defined(PTHREAD_TYPE) && ${PTHREAD_TYPE} == "none"
# CONFIGURE_ARGS+= --without-pthreads
# .endif
#
@@ -33,7 +33,7 @@
# #
# .include "../../mk/pthread.buildlink2.mk"
#
-# .if defined(PTHREAD_TYPE) && (${PTHREAD_TYPE} == "none")
+# .if defined(PTHREAD_TYPE) && ${PTHREAD_TYPE} == "none"
# CONFIGURE_ARGS+= --without-pthreads
# .endif
#
@@ -72,7 +72,7 @@
# #
# .include "../../mk/pthread.buildlink2.mk"
#
-# .if defined(PTHREAD_TYPE) && (${PTHREAD_TYPE} == "none")
+# .if defined(PTHREAD_TYPE) && ${PTHREAD_TYPE} == "none"
# . include "../../devel/ptl2/buildlink2.mk"
# .endif
#
@@ -116,7 +116,7 @@ PTHREAD_OPTS?= # empty
#
.undef PTHREAD_TYPE
PREFER_NATIVE_PTHREADS?= YES
-.if exists(/usr/include/pthread.h) && (${PREFER_NATIVE_PTHREADS} == "YES")
+.if exists(/usr/include/pthread.h) && ${PREFER_NATIVE_PTHREADS} == "YES"
PTHREAD_TYPE= native
.else
. if !empty(PTHREAD_OPTS:Mnative)
@@ -131,7 +131,7 @@ PTHREAD_TYPE= none
PTHREAD_TYPE= ${_PKG_PTHREAD}
. endif
. endfor
-. if (${PTHREAD_TYPE} == "none") && \
+. if ${PTHREAD_TYPE} == "none" && \
!empty(PTHREAD_OPTS:Mrequire) && empty(PTHREAD_OPTS:Moptional)
PKG_FAIL_REASON= "${PKGNAME} requires a working pthreads implementation."
. endif