diff options
author | gj <gj@FreeBSD.org> | 2001-10-26 22:46:40 +0000 |
---|---|---|
committer | gj <gj@FreeBSD.org> | 2001-10-26 22:46:40 +0000 |
commit | df80820d17881053f2d49694219d805193ea6e6d (patch) | |
tree | aa2ef6d8ae3d82291343bfc8f90c5caea961a82a /editors/xemacs | |
parent | f1a96dcbef0aa2377eedc1c16e3e95dffefbdb01 (diff) | |
download | FreeBSD-ports-df80820d17881053f2d49694219d805193ea6e6d.zip FreeBSD-ports-df80820d17881053f2d49694219d805193ea6e6d.tar.gz |
Put tmp_zot (output from sed) into /tmp in case /usr/ports is mounted
read only.
PR: ports/31513
Submitted by: Marc Unangst (mju@unangst.org)
Diffstat (limited to 'editors/xemacs')
-rw-r--r-- | editors/xemacs/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/xemacs/Makefile b/editors/xemacs/Makefile index 2b77167..2727ac7 100644 --- a/editors/xemacs/Makefile +++ b/editors/xemacs/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_zot - @${MV} tmp_zot ${WRKSRC}/${file} + @${SED} -e 's/\.1/&.gz/' ${WRKSRC}/${file} > /tmp/tmp_zot + @${MV} /tmp/tmp_zot ${WRKSRC}/${file} .endfor post-install:: |