summaryrefslogtreecommitdiff
path: root/devel/noweb
diff options
context:
space:
mode:
authortnn <tnn>2008-03-08 16:28:23 +0000
committertnn <tnn>2008-03-08 16:28:23 +0000
commit3c176ba6c6eb03285655bb06f9eb035c358b8f27 (patch)
treea725687dcaa0f9a32ceac79b1acf892efd427133 /devel/noweb
parent13dec2025e759a92cccd3680719693e8f10618a2 (diff)
downloadpkgsrc-3c176ba6c6eb03285655bb06f9eb035c358b8f27.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')
-rw-r--r--devel/noweb/distinfo4
-rw-r--r--devel/noweb/patches/patch-ac4
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 \