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 | fb05ffff8c328ec29ab9967e50e8103ca7f31584 (patch) | |
tree | a725687dcaa0f9a32ceac79b1acf892efd427133 /devel | |
parent | 5cbf6f6405875f2c89419d0a7bf3357735546a16 (diff) | |
download | pkgsrc-fb05ffff8c328ec29ab9967e50e8103ca7f31584.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')
-rw-r--r-- | devel/noweb/distinfo | 4 | ||||
-rw-r--r-- | devel/noweb/patches/patch-ac | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/devel/noweb/distinfo b/devel/noweb/distinfo index 9ae6be89167..b85b27726dc 100644 --- a/devel/noweb/distinfo +++ b/devel/noweb/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.5 2008/03/08 13:02:40 tnn Exp $ +$NetBSD: distinfo,v 1.6 2008/03/08 16:28:23 tnn Exp $ SHA1 (noweb-2.11b.tgz) = 3b391c42f46dcb8a002b863fb2e483560a7da51d RMD160 (noweb-2.11b.tgz) = 01e4fbb636dfd0f6d117caa045cf105e49d25fca Size (noweb-2.11b.tgz) = 738870 bytes SHA1 (patch-aa) = a548bc947bc3846e623565e9d875205ed1b772fd -SHA1 (patch-ac) = 994a31678edea853ffd04012e1c2394cda6e5913 +SHA1 (patch-ac) = b953b18dfcb70f959b3fef4fff365e793c298563 SHA1 (patch-ad) = 3dbadb8b512da3aee92330f15f1d66d8dc757b53 SHA1 (patch-ae) = 007f1943f60d1f5b3207bc6bd537b86e71c56a77 SHA1 (patch-af) = adf5f5ad3d20455ba51e214fbaec947a7dd49e09 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 \ |