diff options
| author | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2024-12-31 15:23:29 +0100 |
|---|---|---|
| committer | Muhammad Moinur Rahman <bofh@FreeBSD.org> | 2024-12-31 15:39:30 +0100 |
| commit | ac7a7d6fe13746d1178035d7756c788f9ef9beb2 (patch) | |
| tree | 4acab9d840c8b6cb1477ba8c67b3da4a4c338564 /java/javahelp | |
| parent | devel/py-vcrpy: Update version 6.0.2=>7.0.0 (diff) | |
Mk/Uses/java.mk: Runtime fix with USES=java:ant
USES=java:ant does not imply USES=java:run so we need to add the run arg
seperately when we are using USES=java:ant. Not all ports require the
the argument so it is better to address the ports individually instead
of handling it automatically by implying run for ant.
Thanks to vvd for carefully going through this.
Reported by: vvd
Approved by: portmgr (blanket)
Diffstat (limited to 'java/javahelp')
| -rw-r--r-- | java/javahelp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/javahelp/Makefile b/java/javahelp/Makefile index 534d644923d4..5f8e8f278f21 100644 --- a/java/javahelp/Makefile +++ b/java/javahelp/Makefile @@ -1,6 +1,6 @@ PORTNAME= javahelp PORTVERSION= 2.0.05.20170719 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= java devel MAINTAINER= ports@FreeBSD.org @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${TOMCAT_jsp}:${TOMCAT_PORT} -USES= java:ant +USES= java:ant,run USE_GITHUB= yes GH_ACCOUNT= javaee GH_TAGNAME= 3ca862d |
