summaryrefslogtreecommitdiff
path: root/textproc/ispell-german/patches/patch-aa
blob: 46b3b66fb73dcf94f67046e666cd50ba6139e818 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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