summaryrefslogtreecommitdiff
path: root/Mk/Uses/jpeg.mk
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2015-10-14 16:49:35 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2015-10-14 16:49:35 +0000
commit869e1f27d0cd912f612cd1af8dd5491749901f80 (patch)
tree253c001da30db94087f88bf237955915bfb0f012 /Mk/Uses/jpeg.mk
parentDocument assigned CVE for graphics/optipng (diff)
Drop the necessity to add ${PORTSDIR} to dependency line
Modify make describe to automatically prepend ${PORTSDIR} if the path for the port is not absolute Checked with poudriere, portmaster, portupgrade PR: 203685 Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D3866
Notes
Notes: svn path=/head/; revision=399278
Diffstat (limited to 'Mk/Uses/jpeg.mk')
-rw-r--r--Mk/Uses/jpeg.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/Mk/Uses/jpeg.mk b/Mk/Uses/jpeg.mk
index daf8b96da85c..6fbbe80fe67e 100644
--- a/Mk/Uses/jpeg.mk
+++ b/Mk/Uses/jpeg.mk
@@ -23,14 +23,14 @@ jpeg_ARGS= lib
.endif
.if ${jpeg_ARGS} == lib
-LIB_DEPENDS+= libjpeg.so:${PORTSDIR}/${JPEG_PORT}
+LIB_DEPENDS+= libjpeg.so:${JPEG_PORT}
.elif ${jpeg_ARGS} == build
-BUILD_DEPENDS+= cjpeg:${PORTSDIR}/${JPEG_PORT}
+BUILD_DEPENDS+= cjpeg:${JPEG_PORT}
.elif ${jpeg_ARGS} == run
-RUN_DEPENDS+= cjpeg:${PORTSDIR}/${JPEG_PORT}
+RUN_DEPENDS+= cjpeg:${JPEG_PORT}
.elif ${jpeg_ARGS} == both
-BUILD_DEPENDS+= cjpeg:${PORTSDIR}/${JPEG_PORT}
-RUN_DEPENDS+= cjpeg:${PORTSDIR}/${JPEG_PORT}
+BUILD_DEPENDS+= cjpeg:${JPEG_PORT}
+RUN_DEPENDS+= cjpeg:${JPEG_PORT}
.else
IGNORE= USES=jpeg - invalid args: [${jpeg_ARGS}] specified
.endif