pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/ispell-german Add -print to find(1) when list...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/5098c599357a
branches:  trunk
changeset: 480538:5098c599357a
user:      salo <salo%pkgsrc.org@localhost>
date:      Sun Sep 12 22:25:08 2004 +0000

description:
Add -print to find(1) when listing files in Makefile rules.
Should fix PR pkg/26930 by Georg Schwarz.

diffstat:

 textproc/ispell-german/distinfo         |   3 ++-
 textproc/ispell-german/patches/patch-aa |  22 ++++++++++++++++++++++
 2 files changed, 24 insertions(+), 1 deletions(-)

diffs (36 lines):

diff -r 92e97c226637 -r 5098c599357a textproc/ispell-german/distinfo
--- a/textproc/ispell-german/distinfo   Sun Sep 12 22:19:27 2004 +0000
+++ b/textproc/ispell-german/distinfo   Sun Sep 12 22:25:08 2004 +0000
@@ -1,4 +1,5 @@
-$NetBSD: distinfo,v 1.5 2004/03/12 19:54:51 recht Exp $
+$NetBSD: distinfo,v 1.6 2004/09/12 22:25:08 salo Exp $
 
 SHA1 (igerman98-20030222.tar.bz2) = 3c453257cab294260fc2157b175a3ab1318c5ade
 Size (igerman98-20030222.tar.bz2) = 305783 bytes
+SHA1 (patch-aa) = 8612712b6359f32a8c3bde3ab7ef039f8dc7b385
diff -r 92e97c226637 -r 5098c599357a textproc/ispell-german/patches/patch-aa
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/ispell-german/patches/patch-aa   Sun Sep 12 22:25:08 2004 +0000
@@ -0,0 +1,22 @@
+$NetBSD: patch-aa,v 1.3 2004/09/12 22:25:08 salo Exp $
+
+--- Makefile.orig      2003-02-07 13:40:58.000000000 +0100
++++ Makefile   2004-09-12 23:25:27.000000000 +0200
+@@ -209,14 +209,14 @@
+ 
+ sort:
+       @if grep [äöüÄÖÜß] dicts/*.txt ;then echo "!!! wrong characters in dictionay files !!!";exit 1;fi
+-      cd dicts; find . -name "*.txt" |while read i; do sort -u -o $$i $$i; done
++      cd dicts; find . -name "*.txt" -print |while read i; do sort -u -o $$i $$i; done
+ 
+ pack: sort
+       rm -f unpack
+-      cd dicts; find . -name "*.txt" |while read i; do $(SQ) < $$i > $$i.sq && rm $$i; done
++      cd dicts; find . -name "*.txt" -print |while read i; do $(SQ) < $$i > $$i.sq && rm $$i; done
+ 
+ unpack:
+-      cd dicts; find . -name "*.sq" |while read i; do $(UNSQ) < $$i > `basename $$i .sq` && rm $$i; done
++      cd dicts; find . -name "*.sq" -print |while read i; do $(UNSQ) < $$i > `basename $$i .sq` && rm $$i; done
+       touch unpack
+ 
+ dist: sort pack clean



Home | Main Index | Thread Index | Old Index