From d68dd0c61ee075a569c84962b2f478dbd1cad083 Mon Sep 17 00:00:00 2001 From: ian Date: Sat, 1 May 2010 13:28:47 +0000 Subject: [PATCH] Remove patchlevel from INSTALLDIR to avoid breaking dependent ports, such as geo/jeoip. From Daniel Dickman - thanks! --- java/junit/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/java/junit/Makefile b/java/junit/Makefile index 0da97ace9d4..86a29d8da01 100644 --- a/java/junit/Makefile +++ b/java/junit/Makefile @@ -1,11 +1,13 @@ -# $OpenBSD: Makefile,v 1.20 2009/11/09 11:03:26 sthen Exp $ +# $OpenBSD: Makefile,v 1.21 2010/05/01 13:28:47 ian Exp $ COMMENT= regression testing utility for use with the Java language VERSION= 3.8.2 DISTNAME= junit${VERSION} -PKGNAME= junit-${VERSION}p5 -INSTALLDIR= ${PKGNAME} +PKGNAME= junit-${VERSION}p6 +# INSTALLDIR must not be set to ${PKGNAME}. Doing so will break +# the regress target in dependant ports if the patch level is bumped. +INSTALLDIR= junit-${VERSION} SUBST_VARS+= INSTALLDIR CATEGORIES= java devel