diff options
author | wiz <wiz> | 2004-07-01 13:09:39 +0000 |
---|---|---|
committer | wiz <wiz> | 2004-07-01 13:09:39 +0000 |
commit | a4302ebb570aa668874e31e09bc0beeff766a409 (patch) | |
tree | 748eccbd430fda8e6cb7a9428ed8398078cafdaf /mk/pthread.buildlink3.mk | |
parent | 7a271d932e50cf414bf87813bafecad7e9a8bbac (diff) | |
download | pkgsrc-a4302ebb570aa668874e31e09bc0beeff766a409.tar.gz |
Do not use continuation -- line is short
enough, and this silences a pkglint warning.
Diffstat (limited to 'mk/pthread.buildlink3.mk')
-rw-r--r-- | mk/pthread.buildlink3.mk | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/mk/pthread.buildlink3.mk b/mk/pthread.buildlink3.mk index 8dd7861c04e..fe7a159651f 100644 --- a/mk/pthread.buildlink3.mk +++ b/mk/pthread.buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: pthread.buildlink3.mk,v 1.8 2004/06/21 21:57:00 xtraeme Exp $ +# $NetBSD: pthread.buildlink3.mk,v 1.9 2004/07/01 13:09:39 wiz Exp $ # # The pthreads strategy for pkgsrc is to "bless" a particular pthread # package as the Official Pthread Replacement (OPR). A package that uses @@ -148,8 +148,7 @@ BUILDLINK_PREFIX.pthread= /usr BUILDLINK_LDFLAGS.pthread= # empty # only pass -pthread on platforms known to support it. -. if ${OPSYS} == "FreeBSD" || ${OPSYS} == "Linux" || \ - ${OPSYS} == "NetBSD" +. if ${OPSYS} == "FreeBSD" || ${OPSYS} == "Linux" || ${OPSYS} == "NetBSD" BUILDLINK_CFLAGS.pthread= -pthread . else BUILDLINK_CFLAGS.pthread= # empty |