diff options
author | spz <spz@pkgsrc.org> | 2009-10-03 16:20:39 +0000 |
---|---|---|
committer | spz <spz@pkgsrc.org> | 2009-10-03 16:20:39 +0000 |
commit | 54926b5d429f44511cc1f5a1affdf8e77f65e8f2 (patch) | |
tree | f24c568833266b84a93952366b9ce04e5db025b9 /news | |
parent | 85ac80f87d97c5f6024bfaf70c143f59656edf1b (diff) | |
download | pkgsrc-54926b5d429f44511cc1f5a1affdf8e77f65e8f2.tar.gz |
fix GNUism in find syntax in the news.daily script source
(reported by Geoff Wing <gcw@pobox.com>)
Diffstat (limited to 'news')
-rw-r--r-- | news/inn/Makefile | 4 | ||||
-rw-r--r-- | news/inn/distinfo | 4 | ||||
-rw-r--r-- | news/inn/patches/patch-ab | 13 |
3 files changed, 15 insertions, 6 deletions
diff --git a/news/inn/Makefile b/news/inn/Makefile index f7fa0a1c5ba..7cbe1571775 100644 --- a/news/inn/Makefile +++ b/news/inn/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.98 2009/09/25 11:06:00 spz Exp $ +# $NetBSD: Makefile,v 1.99 2009/10/03 16:20:39 spz Exp $ DISTNAME= inn-2.5.0 CATEGORIES= news -PKGREVISION= 1 +PKGREVISION= 2 MASTER_SITES= ftp://ftp.isc.org/isc/inn/ \ ftp://ftp.fu-berlin.de/unix/news/inn/ diff --git a/news/inn/distinfo b/news/inn/distinfo index dd5b2e5d75d..57a5cda3d3c 100644 --- a/news/inn/distinfo +++ b/news/inn/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.22 2009/09/25 11:06:00 spz Exp $ +$NetBSD: distinfo,v 1.23 2009/10/03 16:20:39 spz Exp $ SHA1 (inn-2.5.0.tar.gz) = f009da670e2594d9079e7fb26f32d10c640d24e6 RMD160 (inn-2.5.0.tar.gz) = 0b9583eef8fe86131297d403323ab6ff2906fe06 Size (inn-2.5.0.tar.gz) = 2380748 bytes SHA1 (patch-aa) = 8ed86de4d20ab8510c7521528a9979c1d3e6d9e8 -SHA1 (patch-ab) = ba794956728066ec7deffc5506b257a9276b9467 +SHA1 (patch-ab) = bf840b80b30d26abba4971e5ba837f9e43576052 SHA1 (patch-ac) = 2b801b9b8c5eae1feacaa3532e78b4c46210f755 SHA1 (patch-ad) = d36131ad21a1d8ea0edb463dfff6f1800dc8291d SHA1 (patch-ag) = 8041d7d78c26fd7b505d9955dbdb91f2b8cb8ab2 diff --git a/news/inn/patches/patch-ab b/news/inn/patches/patch-ab index d7558eb154b..71358c681a4 100644 --- a/news/inn/patches/patch-ab +++ b/news/inn/patches/patch-ab @@ -1,7 +1,16 @@ -$NetBSD: patch-ab,v 1.7 2009/09/22 13:17:00 spz Exp $ +$NetBSD: patch-ab,v 1.8 2009/10/03 16:20:39 spz Exp $ ---- scripts/news.daily.in.orig 2009-05-21 20:08:33.000000000 +0000 +--- scripts/news.daily.in.orig 2009-05-21 22:08:33.000000000 +0200 +++ scripts/news.daily.in +@@ -233,7 +233,7 @@ then + + # Process files like "innfeed-dropped.A001703" where + # 1703 is not in $LOCKS. +- for file in `find -name "innfeed-dropped*"` ++ for file in `find . -name "innfeed-dropped*" -print` + do + PID=`echo "$file" | ${SED} 's/^.*[A-Z]0*//'` + FOUND=false @@ -253,6 +253,10 @@ fi cd ${PATHETC} |