aboutsummaryrefslogtreecommitdiffstats
path: root/devel/linuxthreads
diff options
context:
space:
mode:
authorpav <pav@FreeBSD.org>2005-09-11 04:47:38 +0800
committerpav <pav@FreeBSD.org>2005-09-11 04:47:38 +0800
commitcf2a3e48e3753372a0e643e05ada061335ffebca (patch)
tree8ed610156e3b713227b1c75ee5126c50373a5a4f /devel/linuxthreads
parentd492ecab29487a1445d9598657b4447e359ced8c (diff)
downloadfreebsd-ports-gnome-cf2a3e48e3753372a0e643e05ada061335ffebca.tar.gz
freebsd-ports-gnome-cf2a3e48e3753372a0e643e05ada061335ffebca.tar.zst
freebsd-ports-gnome-cf2a3e48e3753372a0e643e05ada061335ffebca.zip
- Fix conditionals for ancient make(1)
PR: ports/84482 Submitted by: Brent B. Powers <bbp2006@columbia.edu> Approved by: maintainer timeout (tegge; 1 month)
Diffstat (limited to 'devel/linuxthreads')
-rw-r--r--devel/linuxthreads/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/linuxthreads/Makefile b/devel/linuxthreads/Makefile
index dee42a273cee..a2017ee7adea 100644
--- a/devel/linuxthreads/Makefile
+++ b/devel/linuxthreads/Makefile
@@ -229,12 +229,12 @@ post-install:
# @sh ${PKGINSTALL} ${PKGNAME} POST-INSTALL
-.if (defined(NOPROFILE) && ${OSVERSION} < 600007) || (defined(NO_PROFILE) && ${OSVERSION} >= 600007)
+.if (defined(NOPROFILE) && ${OSVERSION} < 600007 ) || (defined(NO_PROFILE) && ${OSVERSION} >= 600007 )
PLIST_SUB= PROFILE:="@comment "
.else
PLIST_SUB= PROFILE:=""
.endif
-.if (defined(NOPIC) && ${OSVERSION} < 600007) || (defined(NO_PIC) && ${OSVERSION} >= 600007)
+.if (defined(NOPIC) && ${OSVERSION} < 600007 ) || (defined(NO_PIC) && ${OSVERSION} >= 600007 )
PLIST_SUB+= PIC:="@comment "
.else
PLIST_SUB+= PIC:=""