Files
pkgsrc-ng/devel/noweb/patches/patch-am
2013-09-26 17:14:40 +02:00

33 lines
954 B
Plaintext

$NetBSD: patch-am,v 1.2 2008/03/08 13:02:40 tnn Exp $
--- src/shell/roff.mm.orig 1998-08-18 21:33:04.000000000 +0200
+++ src/shell/roff.mm
@@ -214,7 +214,7 @@ copy the awk program into a temporary fi
.ADDLIST 1a
.PRINTLIST
-awkfile="/tmp/noweb$$.awk"
+awkfile=$(@MKTEMP@ -t noweb) || { echo "$0: Cannot create temporary file" >&2; exit 1; }
trap 'rm -f $awkfile' 0 1 2 10 14 15
cat > $awkfile \&<< 'EOF'
\c
@@ -1628,14 +1628,15 @@ base="`basename $1 | sed '/\./s/\.[^.]*$
tagsfile="$base.nwt"
(echo ".so $macrodir/tmac.w"
if [ -r "$tagsfile" ]; then
- cp $tagsfile /tmp/tags.$$
+ tagstemp=$(@MKTEMP@ -t tags) || { echo "$0: Cannot create temporary file" >&2; exit 1; }
+ cp $tagsfile $tagstemp
$AWK '\c
.USE "action for \*[BEGINCONVQUOTE]tags\*[ENDCONVQUOTE] line" 11c
\&
\c
.USE "functions" 8a
-\&' /tmp/tags.$$
- rm -f /tmp/tags.$$
+\&' $tagstemp
+ rm -f $tagstemp
fi
cat "$@") |
($ROFF $opts 2>$tagsfile)