diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2018-11-24 01:26:20 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2018-11-24 01:26:20 +0800 |
commit | aec4917ccc132dbaf1e85dd76b5bb71a5567461a (patch) | |
tree | 5de79fcc1a9e0e0754838359395e14e8491f744d | |
parent | 20314870afa997a36dc62cc5d3be47be1284bb95 (diff) | |
download | freebsd-ports-gnome-aec4917ccc132dbaf1e85dd76b5bb71a5567461a.tar.gz freebsd-ports-gnome-aec4917ccc132dbaf1e85dd76b5bb71a5567461a.tar.zst freebsd-ports-gnome-aec4917ccc132dbaf1e85dd76b5bb71a5567461a.zip |
- Simplify PLIST_FILES as suggested by mat: PREFIX-based absolute paths are allowed in plist
Approved by: portmgr blanket
-rw-r--r-- | java/netty/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/netty/Makefile b/java/netty/Makefile index 2db5e27ab9b2..d4de764d8742 100644 --- a/java/netty/Makefile +++ b/java/netty/Makefile @@ -21,8 +21,8 @@ NO_BUILD= yes NO_ARCH= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}.Final -PLIST_FILES= ${JAVAJARDIR:S,^${PREFIX}/,,}/netty-${PORTVERSION}.jar \ - ${JAVAJARDIR:S,^${PREFIX}/,,}/netty.jar +PLIST_FILES= ${JAVAJARDIR}/netty-${PORTVERSION}.jar \ + ${JAVAJARDIR}/netty.jar PORTDATA= * PORTDOCS= * |