diff options
author | cpiazza <cpiazza@FreeBSD.org> | 1999-11-14 00:53:32 +0000 |
---|---|---|
committer | cpiazza <cpiazza@FreeBSD.org> | 1999-11-14 00:53:32 +0000 |
commit | 2e96cb029e365358e6471d9d179574fdef4b175a (patch) | |
tree | 728f7010f8a7e9e703eb2fa04d79850bc51c6521 /lang/librep2 | |
parent | 18751175534973a7cced7039ebe52187d6b0c16b (diff) | |
download | FreeBSD-ports-2e96cb029e365358e6471d9d179574fdef4b175a.zip FreeBSD-ports-2e96cb029e365358e6471d9d179574fdef4b175a.tar.gz |
Don't create a temp file in ${FILESDIR}
PR: 14857
Submitted by: OKAZAKI Tetsurou <okazaki@be.to>
Diffstat (limited to 'lang/librep2')
-rw-r--r-- | lang/librep2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/librep2/Makefile b/lang/librep2/Makefile index 5b99ef9..7283c7c 100644 --- a/lang/librep2/Makefile +++ b/lang/librep2/Makefile @@ -23,7 +23,7 @@ TAR_VER= '\"'`${TAR} --version 2>&1 | ${SED} 's/GNU tar version //'`'\"' post-patch: ${CAT} ${WRKSRC}/lisp/tar-file-handler.jl | \ ${SED} '/^(defvar tarfh-gnu-tar-version/s/nil/'${TAR_VER}'/' \ - > ${FILESDIR}/tmp.work - ${CP} ${FILESDIR}/tmp.work ${WRKSRC}/lisp/tar-file-handler.jl + > ${WRKDIR}/tmp.work + ${CP} ${WRKDIR}/tmp.work ${WRKSRC}/lisp/tar-file-handler.jl .include <bsd.port.mk> |