1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

- Fix problem with ancient make.

PR:		ports/93143
Submitted by:	Eric Cronin <ecronin@gizmolabs.org>
This commit is contained in:
Florent Thoumie 2006-02-20 13:13:24 +00:00
parent 9effedd182
commit 8c55ca4984
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=156492
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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