diff options
author | Boris Samorodov <bsam@FreeBSD.org> | 2012-07-31 21:15:32 +0800 |
---|---|---|
committer | Boris Samorodov <bsam@FreeBSD.org> | 2012-07-31 21:15:32 +0800 |
commit | 33825714439859db0e96c1bf9b4ead6e68311376 (patch) | |
tree | ac1eef39b55e628ce28c4fcc2d549d31f01ef179 /x11-toolkits | |
parent | c49dafa17463a7774a660b3cb6ae22a8c1c6d72c (diff) | |
download | freebsd-ports-gnome-33825714439859db0e96c1bf9b4ead6e68311376.tar.gz freebsd-ports-gnome-33825714439859db0e96c1bf9b4ead6e68311376.tar.zst freebsd-ports-gnome-33825714439859db0e96c1bf9b4ead6e68311376.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 'x11-toolkits')
-rw-r--r-- | x11-toolkits/linux-f10-gtk/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/linux-f10-qt33/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/linux-gtk/Makefile | 2 | ||||
-rw-r--r-- | x11-toolkits/linux-qt33/Makefile | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/x11-toolkits/linux-f10-gtk/Makefile b/x11-toolkits/linux-f10-gtk/Makefile index f81ec95052ea..989f5c548d6c 100644 --- a/x11-toolkits/linux-f10-gtk/Makefile +++ b/x11-toolkits/linux-f10-gtk/Makefile @@ -24,6 +24,6 @@ LINUX_NAME= ${PORTNAME}+ LINUX_DIST_VER= 10 RPMVERSION= 66.fc10 USE_LDCONFIG= yes -PLIST= pkg-plist.${LINUX_RPM_ARCH} +PLIST= ${PKGDIR}/pkg-plist.${LINUX_RPM_ARCH} .include <bsd.port.mk> diff --git a/x11-toolkits/linux-f10-qt33/Makefile b/x11-toolkits/linux-f10-qt33/Makefile index 9f1313914b49..2c62673830cf 100644 --- a/x11-toolkits/linux-f10-qt33/Makefile +++ b/x11-toolkits/linux-f10-qt33/Makefile @@ -24,7 +24,7 @@ LINUX_NAME= qt3 LINUX_DIST_VER= 10 RPMVERSION= 17.fc10 USE_LDCONFIG= yes -PLIST= pkg-plist.${LINUX_RPM_ARCH} +PLIST= ${PKGDIR}/pkg-plist.${LINUX_RPM_ARCH} DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr diff --git a/x11-toolkits/linux-gtk/Makefile b/x11-toolkits/linux-gtk/Makefile index 89b04aac4a89..2ed985215582 100644 --- a/x11-toolkits/linux-gtk/Makefile +++ b/x11-toolkits/linux-gtk/Makefile @@ -27,6 +27,6 @@ USE_LINUX_RPM= yes USE_LINUX_APPS= xorglibs LINUX_DIST_VER= 4 USE_LDCONFIG= yes -PLIST= pkg-plist.${LINUX_RPM_ARCH} +PLIST= ${PKGDIR}/pkg-plist.${LINUX_RPM_ARCH} .include <bsd.port.mk> diff --git a/x11-toolkits/linux-qt33/Makefile b/x11-toolkits/linux-qt33/Makefile index be0198f0e1f3..be61b29bdde7 100644 --- a/x11-toolkits/linux-qt33/Makefile +++ b/x11-toolkits/linux-qt33/Makefile @@ -23,6 +23,6 @@ USE_LINUX_APPS= fontconfig libmng png RPMVERSION= 15.5 LINUX_DIST_VER= 4 USE_LDCONFIG= yes -PLIST= pkg-plist.${LINUX_RPM_ARCH} +PLIST= ${PKGDIR}/pkg-plist.${LINUX_RPM_ARCH} .include <bsd.port.mk> |