diff options
author | roberto <roberto@FreeBSD.org> | 2002-09-10 22:53:23 +0800 |
---|---|---|
committer | roberto <roberto@FreeBSD.org> | 2002-09-10 22:53:23 +0800 |
commit | 5d15ca6986e2872f1db457db616e5c62288398bb (patch) | |
tree | a9e3907a506ad091c086d58559a95ebb81392038 | |
parent | 3c04688ab1be714cdf770340368f0bae4e456ee8 (diff) | |
download | freebsd-ports-gnome-5d15ca6986e2872f1db457db616e5c62288398bb.tar.gz freebsd-ports-gnome-5d15ca6986e2872f1db457db616e5c62288398bb.tar.zst freebsd-ports-gnome-5d15ca6986e2872f1db457db616e5c62288398bb.zip |
${PREFIX}/var/tmp is obviously wrong. Use /tmp instead.
PR: ports/41815
Submitted by: Dan Langille <danl@freebsddiary.org> (fix by me)
-rw-r--r-- | security/logcheck/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/security/logcheck/Makefile b/security/logcheck/Makefile index 801935cc7479..432b38bc8bfb 100644 --- a/security/logcheck/Makefile +++ b/security/logcheck/Makefile @@ -18,7 +18,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} PKGMESSAGE= ${WRKDIR}/MESSAGE pre-configure: - ${REINPLACE_CMD} -e "s@/usr/local/etc/tmp@${PREFIX}/var/tmp@g; \ + ${REINPLACE_CMD} -e "s@/usr/local/etc/tmp@/tmp@g; \ s@/usr/local@${PREFIX}@" ${WRKSRC}/Makefile \ ${WRKSRC}/systems/freebsd/logcheck.sh ${REINPLACE_CMD} -e "s@/bin/mkdir@${MKDIR}@g" ${WRKSRC}/Makefile |