1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-03-24 22:09:57 +01:00

* mk-w32-dist: Do not include the en@* po files.

* autogen.sh <--build-w32>: Build keyserver helpers again.
This commit is contained in:
Werner Koch 2004-06-14 05:49:19 +00:00
parent d9f1eed99e
commit 7e165d9758
3 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2004-06-14 Werner Koch <wk@gnupg.org>
* mk-w32-dist: Do not include the en@* po files.
* autogen.sh <--build-w32>: Build keyserver helpers again.
2004-04-02 Thomas Schwinge <schwinge@nic-nac-project.de>
* autogen.sh: Added ACLOCAL_FLAGS.

View File

@ -71,7 +71,7 @@ if test "$1" = "--build-w32"; then
[ $DIE = yes ] && exit 1
$tsdir/configure --build=${build} --host=${host} \
${disable_foo_tests} --disable-keyserver-helpers $*
${disable_foo_tests} $*
# Ugly hack to overcome a gettext problem. Someone should look into
# gettext to figure out why the po directory is not ignored as it used

View File

@ -76,9 +76,12 @@ for i in ${srcdir}/po/*.po; do
tr) toset="CP1254" ;; # DOS: CP857
el) toset="CP1253" ;; # same as latin-7?
el|eo|et|ja|pl|hu|sk|zh_TW) toset="" ;;
en@*) toset="skip" ;;
*) toset="CP850" ;;
esac
if [ -n "$toset" ]; then
if [ "$toset" = "skip" ]; then
:
elif [ -n "$toset" ]; then
echo "$lang: converting from $fromset to $toset" >&2
iconv --silent --from-code=$fromset --to-code=$toset < $i | \
sed "/^\"Content-Type:/ s/charset=[a-zA-Z0-9_-]*/charset=$toset/" | \