From a253ef5c2a94828e16fbc0b5e9d5c44eba11fc72 Mon Sep 17 00:00:00 2001 From: hoek Date: Sat, 5 Sep 1998 20:40:09 +0000 Subject: Don't assume env TMPDIR is defined. PR: ports/7838 --- news/slurp/scripts/configure | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'news') diff --git a/news/slurp/scripts/configure b/news/slurp/scripts/configure index 894bc907041a..ac641dd012ba 100644 --- a/news/slurp/scripts/configure +++ b/news/slurp/scripts/configure @@ -1,18 +1,21 @@ #!/bin/sh # -# $Id$ +# $Id: configure,v 1.1 1997/11/13 23:14:58 jraynard Exp $ # -echo "s!/usr/lib/news!${PREFIX}/news/lib!" > ${TMPDIR}/tmp.slurp.sed.$$ +TMPFILE=${TMPDIR:-/tmp}/tmp.slurp.sed.$$ +trap 'rm -f ${TMPFILE}' 1 2 13 15 + +echo "s!/usr/lib/news!${PREFIX}/news/lib!" > ${TMPFILE} if [ -d /var/news ] then - echo 's!/var/spool!/var!' >> ${TMPDIR}/tmp.slurp.sed.$$ + echo 's!/var/spool!/var!' >> ${TMPFILE} fi -sed -f ${TMPDIR}/tmp.slurp.sed.$$ < ${WRKSRC}/conf.h > ${WRKSRC}/conf.h.tmp +sed -f ${TMPFILE} < ${WRKSRC}/conf.h > ${WRKSRC}/conf.h.tmp mv ${WRKSRC}/conf.h.tmp ${WRKSRC}/conf.h -rm -f ${TMPDIR}/tmp.slurp.sed.$$ +rm -f ${TMPFILE} rm -f ${WRKDIR}/syslog.h -- cgit