diff options
author | asami <asami@FreeBSD.org> | 1999-09-30 23:06:52 +0000 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1999-09-30 23:06:52 +0000 |
commit | 69216eba7bb5913d7069c8c99199f48149129bbb (patch) | |
tree | 89f35ef3b7fbb9f30518ea3092e93734368e3de8 /www | |
parent | 60babe61ed3005f84f4cd4c7e80d1035c0d017fd (diff) | |
download | FreeBSD-ports-69216eba7bb5913d7069c8c99199f48149129bbb.zip FreeBSD-ports-69216eba7bb5913d7069c8c99199f48149129bbb.tar.gz |
You can't write into ${PKGDIR} -- move ${PKGMESSAGE} to ${WRKSRC}.
Found by: obento
Diffstat (limited to 'www')
-rw-r--r-- | www/roxen/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/www/roxen/Makefile b/www/roxen/Makefile index c4f2ee6..67b6502 100644 --- a/www/roxen/Makefile +++ b/www/roxen/Makefile @@ -15,6 +15,7 @@ MAINTAINER= k@123.org WRKSRC= ${WRKDIR}/roxen_1.3.111 GNU_CONFIGURE= yes +PKGMESSAGE= ${WRKSRC}/MESSAGE STARTUP_SCRIPT= ${PREFIX}/etc/rc.d/roxen.sh @@ -22,7 +23,7 @@ post-patch: @${SED} -e "s|%%PREFIX%%|${PREFIX}|g" ${FILESDIR}/roxen.sh.in > \ ${WRKDIR}/roxen.sh @${SED} -e "s|%%PREFIX%%|${PREFIX}|g" ${FILESDIR}/MESSAGE.in > \ - ${PKGDIR}/MESSAGE + ${PKGMESSAGE} do-configure: @(cd ${WRKSRC}; \ |