diff options
author | bsam <bsam@FreeBSD.org> | 2012-07-31 21:15:32 +0800 |
---|---|---|
committer | bsam <bsam@FreeBSD.org> | 2012-07-31 21:15:32 +0800 |
commit | 7ab7033c1457e604dea3c04c07d25e542c7577d4 (patch) | |
tree | ac1eef39b55e628ce28c4fcc2d549d31f01ef179 /textproc | |
parent | 051c1bbf5c73b75129fe0e8aa034d36f74a202f6 (diff) | |
download | freebsd-ports-gnome-7ab7033c1457e604dea3c04c07d25e542c7577d4.tar.gz freebsd-ports-gnome-7ab7033c1457e604dea3c04c07d25e542c7577d4.tar.zst freebsd-ports-gnome-7ab7033c1457e604dea3c04c07d25e542c7577d4.zip |
Use asolute path for PLIST (prepend ${PKGDIR} to PLIST).
It's more safe that a relative path.
Inspired by PR: ports/169702
Submitted by: Tijl Coosemans <tijl@coosemans.org>
Discussed at: freebsd-emulation
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/linux-libxml/Makefile | 2 | ||||
-rw-r--r-- | textproc/linux-libxml2/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/textproc/linux-libxml/Makefile b/textproc/linux-libxml/Makefile index 942831ef57d8..11be301ac0c6 100644 --- a/textproc/linux-libxml/Makefile +++ b/textproc/linux-libxml/Makefile @@ -22,7 +22,7 @@ EXPIRATION_DATE=2013-02-28 USE_LINUX_RPM= yes LINUX_DIST_VER= 4 USE_LDCONFIG= yes -PLIST= pkg-plist.${LINUX_RPM_ARCH} +PLIST= ${PKGDIR}/pkg-plist.${LINUX_RPM_ARCH} PLIST_SUB+= PORTVERSION="${PORTVERSION}" .include <bsd.port.mk> diff --git a/textproc/linux-libxml2/Makefile b/textproc/linux-libxml2/Makefile index f1a7c9772afd..1d865268bda9 100644 --- a/textproc/linux-libxml2/Makefile +++ b/textproc/linux-libxml2/Makefile @@ -22,7 +22,7 @@ USE_LINUX_RPM= yes LINUX_DIST_VER= 4 USE_LDCONFIG= yes BRANDELF_DIRS= usr/bin -PLIST= pkg-plist.${LINUX_RPM_ARCH} +PLIST= ${PKGDIR}/pkg-plist.${LINUX_RPM_ARCH} PLIST_SUB+= PORTVERSION="${PORTVERSION}" .include <bsd.port.mk> |