diff options
author | tnn <tnn@pkgsrc.org> | 2008-03-08 16:28:23 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2008-03-08 16:28:23 +0000 |
commit | cbe3855e0b530b53d056f3f187180508354155b8 (patch) | |
tree | a725687dcaa0f9a32ceac79b1acf892efd427133 /devel/noweb/patches | |
parent | 855f3d9bd18227ead2eb1c2f77947011c43dc6b8 (diff) | |
download | pkgsrc-cbe3855e0b530b53d056f3f187180508354155b8.tar.gz |
Fix patch-ac: Linux mktemp(1) fails to be compatible with the original BSD
mktemp implementation in that the X's _must_ be specified in the template.
Diffstat (limited to 'devel/noweb/patches')
-rw-r--r-- | devel/noweb/patches/patch-ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/noweb/patches/patch-ac b/devel/noweb/patches/patch-ac index 867805a65b6..50b8d404d54 100644 --- a/devel/noweb/patches/patch-ac +++ b/devel/noweb/patches/patch-ac @@ -1,4 +1,4 @@ -$NetBSD: patch-ac,v 1.2 2008/03/08 13:02:40 tnn Exp $ +$NetBSD: patch-ac,v 1.3 2008/03/08 16:28:23 tnn Exp $ --- src/awkname.orig 2000-06-16 22:26:42.000000000 +0200 +++ src/awkname @@ -7,7 +7,7 @@ $NetBSD: patch-ac,v 1.2 2008/03/08 13:02:40 tnn Exp $ rc=0 -new=/tmp/$$.new; old=/tmp/$$.old -+new=$(@MKTEMP@ -t noweb_new) || exit 1; old=$(@MKTEMP@ -t noweb_old) || exit 1 ++new=$(@MKTEMP@ -t noweb_new.XXXXXXXX) || exit 1; old=$(@MKTEMP@ -t noweb_old.XXXXXXXX) || exit 1 for file in lib/emptydefn lib/unmarkup lib/toascii lib/btdefn \ awk/noidx awk/totex awk/tohtml awk/noindex \ |