diff --git a/ChangeLog b/ChangeLog index 92af2ddbb..d6a68b7c7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2013-05-07 Vladimir Serbinenko + + * autogen.sh: Exclude unused libgcrypt files from translation. + 2013-05-07 Vladimir Serbinenko Simplify few strings. diff --git a/autogen.sh b/autogen.sh index 00fdafca9..60ae5db8e 100755 --- a/autogen.sh +++ b/autogen.sh @@ -6,7 +6,7 @@ export LC_CTYPE=C export LC_COLLATE=C unset LC_ALL -find . -iname '*.[ch]' -not -ipath './grub-core/lib/libgcrypt-grub/*' -not -ipath './build-aux/*' |sort > po/POTFILES.in +find . -iname '*.[ch]' -not -ipath './grub-core/lib/libgcrypt-grub/*' -not -ipath './build-aux/*' -not -ipath './grub-core/lib/libgcrypt/src/misc.c' -not -ipath './grub-core/lib/libgcrypt/src/global.c' -not -ipath './grub-core/lib/libgcrypt/src/secmem.c' |sort > po/POTFILES.in autogen --version >/dev/null || exit 1