blob: 4eef9a8fc3187867d0a4b4c4ed6abe4cb31a2439 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
Fix README
fix AUTHORS
restore djgpp, eventually
Move things so there are no symlinks from repository to
any directory other than common
Make bug-reporting address bug-coreutils@gnu.org work.
grep 'bug-.*utils' src/*.c
******************8
LINGUAS:
sort -u ../[fst]u/po/LINGUAS > po/LINGUAS
go cu
cd po
for i in f s t; do
echo $i:
xu=${i}u
for j in $(cat ../../$xu/po/LINGUAS); do
echo " $j"
msgmerge -o k ../../$xu/po/$j.po $j.po && mv k $j.po
done
done
|