blob: fb7110a87d46ffea976bae253778811661f2a462 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
rm -fr find-lang-root
for file in \
find-lang-root/usr/share/man/fr/man1/lang.1.lzma \
find-lang-root/usr/share/locale/pt_BR/LC_MESSAGES/lang.mo \
find-lang-root/usr/share/gnome/help/lang/pt_BR/any.html \
find-lang-root/usr/share/gnome/help/lang/en_GB/any.html
do install -D Makefile $file
done
exec perl tests/findlang.pl
|