diff options
author | gj <gj@FreeBSD.org> | 2001-10-27 16:24:43 +0000 |
---|---|---|
committer | gj <gj@FreeBSD.org> | 2001-10-27 16:24:43 +0000 |
commit | 2ba1018aaf29990ef1a60312ad501462cb376163 (patch) | |
tree | 50df79526aa7005759d88a70cd6a4943d2529a3d /editors/xemacs-devel | |
parent | f92442c2d1b80528e86178e0639d6cc15526d034 (diff) | |
download | FreeBSD-ports-2ba1018aaf29990ef1a60312ad501462cb376163.zip FreeBSD-ports-2ba1018aaf29990ef1a60312ad501462cb376163.tar.gz |
Use ${WRKDIR} instead of /tmp for the temporary output from sed because
it's just generally a better idea. Why didn't I think of that ?
Submitted by: nectar
Diffstat (limited to 'editors/xemacs-devel')
-rw-r--r-- | editors/xemacs-devel/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/xemacs-devel/Makefile b/editors/xemacs-devel/Makefile index 2727ac7..a5cbd6c 100644 --- a/editors/xemacs-devel/Makefile +++ b/editors/xemacs-devel/Makefile @@ -83,8 +83,8 @@ WITH_OFFIX?= --with-offix=no # fix .so references in a few man pages pre-configure:: .for file in etc/ctags.1 etc/gnuattach.1 etc/gnuclient.1 etc/gnudoit.1 - @${SED} -e 's/\.1/&.gz/' ${WRKSRC}/${file} > /tmp/tmp_zot - @${MV} /tmp/tmp_zot ${WRKSRC}/${file} + @${SED} -e 's/\.1/&.gz/' ${WRKSRC}/${file} > ${WRKDIR}/tmp_zot + @${MV} ${WRKDIR}/tmp_zot ${WRKSRC}/${file} .endfor post-install:: |