diff options
author | steve <steve@FreeBSD.org> | 2001-12-25 05:58:42 +0800 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 2001-12-25 05:58:42 +0800 |
commit | 764fc5963bc9220e7d8d0531b8bcb71ba23ffe33 (patch) | |
tree | 59cae7e3cedfe9ad785074942d72a53959a66a6c /security/cyrus-sasl2 | |
parent | d535cf7c1ef546be63b7134ff01ffba55923aafb (diff) | |
download | freebsd-ports-gnome-764fc5963bc9220e7d8d0531b8bcb71ba23ffe33.tar.gz freebsd-ports-gnome-764fc5963bc9220e7d8d0531b8bcb71ba23ffe33.tar.zst freebsd-ports-gnome-764fc5963bc9220e7d8d0531b8bcb71ba23ffe33.zip |
Don't write pkg-{deinstall,install,message} to ${.CURDIR} but ${WRKDIR}
instead since ${.CURDIR} can be a read-only filesystem.
Diffstat (limited to 'security/cyrus-sasl2')
-rw-r--r-- | security/cyrus-sasl2/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/security/cyrus-sasl2/Makefile b/security/cyrus-sasl2/Makefile index 6e6fbb7e8bff..d4119f886402 100644 --- a/security/cyrus-sasl2/Makefile +++ b/security/cyrus-sasl2/Makefile @@ -104,6 +104,10 @@ PLIST_SUB= PREFIX=${PREFIX} \ EBONES=${EBONES} \ DOCSDIR=${DOCSDIR:S/^${PREFIX}\///} \ +PKGDEINSTALL= ${WRKDIR}/pkg-deinstall +PKGINSTALL= ${WRKDIR}/pkg-install +PKGMESSAGE= ${WRKDIR}/pkg-message + pre-fetch: @${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.sasl |