blob: db4ded218eca9774f879573c2fb8c7122db58753 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
$NetBSD: patch-ae,v 1.1 2006/05/23 16:07:04 joerg Exp $
--- shell/nonu.orig 1993-08-19 20:46:04.000000000 +0200
+++ shell/nonu
@@ -2,7 +2,7 @@
LIB=/usr/public/pkg/noweb/lib
# attempt to convert nuweb to noweb using sam
-tmp=/tmp/nonu$$
+tmp=$(@MKTEMP@ -t nonu) || exit 1
trap '/bin/rm -f $tmp; exit 1' 1 2 15 # clean up files
cp $1 $tmp || exit 1
|