summaryrefslogtreecommitdiff
path: root/misc/ldconfig_compat
diff options
context:
space:
mode:
authorFlorent Thoumie <flz@FreeBSD.org>2006-02-20 13:13:24 +0000
committerFlorent Thoumie <flz@FreeBSD.org>2006-02-20 13:13:24 +0000
commit8c55ca4984af56ca4796d96a4d0bbcb68187faa4 (patch)
tree8e7a1a2a97eba6766db678a10576a1366d8b0593 /misc/ldconfig_compat
parent- SHM fix: Silence erroneous warnings on X server initialization (diff)
- Fix problem with ancient make.
PR: ports/93143 Submitted by: Eric Cronin <ecronin@gizmolabs.org>
Notes
Notes: svn path=/head/; revision=156492
Diffstat (limited to 'misc/ldconfig_compat')
-rw-r--r--misc/ldconfig_compat/Makefile8
-rw-r--r--misc/ldconfig_compat/bsd.ldconfig.mk4
2 files changed, 6 insertions, 6 deletions
diff --git a/misc/ldconfig_compat/Makefile b/misc/ldconfig_compat/Makefile
index a3e016490be9..51ae1b719ac8 100644
--- a/misc/ldconfig_compat/Makefile
+++ b/misc/ldconfig_compat/Makefile
@@ -7,7 +7,7 @@
PORTNAME= ldconfig_compat
PORTVERSION= 1.0
-PORTREVISION= 5
+PORTREVISION= 6
CATEGORIES= misc
MASTER_SITES= # none
DISTFILES= # none
@@ -34,9 +34,9 @@ LOCAL_PREFIXES= ${PREFIX}
.include <bsd.port.pre.mk>
.include "${.CURDIR}/bsd.ldconfig.mk"
-.if !(${OSVERSION} < 504105 || \
- (${OSVERSION} >= 700000 && ${OSVERSION} < 700012) || \
- (${OSVERSION} >= 600000 && ${OSVERSION} < 600104))
+.if !( ${OSVERSION} < 504105 || \
+ ( ${OSVERSION} >= 700000 && ${OSVERSION} < 700012 ) || \
+ ( ${OSVERSION} >= 600000 && ${OSVERSION} < 600104 ) )
IGNORE= isn't needed (part of base rc.d)
.endif
diff --git a/misc/ldconfig_compat/bsd.ldconfig.mk b/misc/ldconfig_compat/bsd.ldconfig.mk
index 4813920d6076..4e00e6f20f45 100644
--- a/misc/ldconfig_compat/bsd.ldconfig.mk
+++ b/misc/ldconfig_compat/bsd.ldconfig.mk
@@ -3,8 +3,8 @@ LDCONFIG32_DIR= libdata/ldconfig32
.if defined(USE_LDCONFIG) || defined(USE_LDCONFIG32)
.if ${OSVERSION} < 504105 || \
- (${OSVERSION} >= 700000 && ${OSVERSION} < 700012) || \
- (${OSVERSION} >= 600000 && ${OSVERSION} < 600104)
+ ( ${OSVERSION} >= 700000 && ${OSVERSION} < 700012 ) || \
+ ( ${OSVERSION} >= 600000 && ${OSVERSION} < 600104 )
RUN_DEPENDS+= ${LOCALBASE}/${LDCONFIG_DIR}:${PORTSDIR}/misc/ldconfig_compat
.endif
.endif