From: Vladimir 'phcoder' Serbinenko Date: Tue, 7 May 2013 09:45:47 +0000 (+0200) Subject: * autogen.sh: Exclude unused libgcrypt files from translation. X-Git-Tag: grub-2.02-beta1~1028 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bed061426d32a01c137c9d2acbd31f874c20feb7;p=thirdparty%2Fgrub.git * autogen.sh: Exclude unused libgcrypt files from translation. --- 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