aboutsummaryrefslogtreecommitdiffstats
path: root/ports-mgmt
diff options
context:
space:
mode:
authorlinimon <linimon@FreeBSD.org>2006-06-28 10:41:16 +0800
committerlinimon <linimon@FreeBSD.org>2006-06-28 10:41:16 +0800
commit229b98567685b019e9ea20f9fc0cfbcb9a2f57a9 (patch)
treeeeeb02c01d962c0c1d1fa9a9416bc208f7fd2805 /ports-mgmt
parent8445a0210702713aef1d3a9d214b2698cadcc4f6 (diff)
downloadfreebsd-ports-gnome-229b98567685b019e9ea20f9fc0cfbcb9a2f57a9.tar.gz
freebsd-ports-gnome-229b98567685b019e9ea20f9fc0cfbcb9a2f57a9.tar.zst
freebsd-ports-gnome-229b98567685b019e9ea20f9fc0cfbcb9a2f57a9.zip
Fix typo that pointyhat chokes on. This works on 4.10. Go figure.
Diffstat (limited to 'ports-mgmt')
-rw-r--r--ports-mgmt/portmk/Mk/bsd.port.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/ports-mgmt/portmk/Mk/bsd.port.mk b/ports-mgmt/portmk/Mk/bsd.port.mk
index 044dda04fdac..8453a86ff9a1 100644
--- a/ports-mgmt/portmk/Mk/bsd.port.mk
+++ b/ports-mgmt/portmk/Mk/bsd.port.mk
@@ -1692,9 +1692,9 @@ SUB_FILES+= ${USE_RCORDER}
.endif
.if defined(USE_LDCONFIG) || defined(USE_LDCONFIG32)
-.if ${OSVERSION} < 504105 || \
- ( ${ OSVERSION} >= 700000 && ${OSVERSION} < 700012 ) || \
- ( ${ OSVERSION} >= 600000 && ${OSVERSION} < 600104 )
+.if ( ${OSVERSION} < 504105 ) || \
+ ( ${OSVERSION} >= 700000 && ${OSVERSION} < 700012 ) || \
+ ( ${OSVERSION} >= 600000 && ${OSVERSION} < 600104 )
RUN_DEPENDS+= ${LOCALBASE}/${LDCONFIG_DIR}:${PORTSDIR}/misc/ldconfig_compat
NO_LDCONFIG_MTREE= yes
.endif