1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

- Do not run cdotest on 6.x

Reported by:	pointyhat
Approved by:	pgollucci (mentor, implicit)
This commit is contained in:
Sunpoet Po-Chuan Hsieh 2010-10-21 06:44:18 +00:00
parent b716741f81
commit a76dc28f6f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=263385

View File

@ -35,7 +35,7 @@ OPTIONS= HDF5 "HDF5 support" on \
.include <bsd.port.pre.mk>
.if (${OSVERSION} > 700000) || (${ARCH} != "sparc64")
.if (${OSVERSION} >= 700000) || (${ARCH} != "sparc64")
CONFIGURE_ENV+= CFLAGS="${CFLAGS} -DPTHREAD_MUTEXATTR_CONDATTR"
.endif
@ -87,7 +87,7 @@ LIB_DEPENDS+= sz.2:${PORTSDIR}/science/szip
.endif
post-build:
.if !defined(WITHOUT_NETCDF)
.if !defined(WITHOUT_NETCDF) && (${OSVERSION} >= 700000)
@cd "${WRKSRC}/src" && ${SETENV} CDO_PATH="${WRKSRC}/src/cdo" "${WRKSRC}/src/cdotest"
.endif