]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* autogen.sh: Exclude unused libgcrypt files from translation.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Tue, 7 May 2013 09:45:47 +0000 (11:45 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Tue, 7 May 2013 09:45:47 +0000 (11:45 +0200)
ChangeLog
autogen.sh

index 92af2ddbbb80fd1650b4ee6c29397e768d72deae..d6a68b7c7b11b28419156fe69993854015262075 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-05-07  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * autogen.sh: Exclude unused libgcrypt files from translation.
+
 2013-05-07  Vladimir Serbinenko  <phcoder@gmail.com>
 
        Simplify few strings.
index 00fdafca977d3fe5fc8099e4248ccd65309e7067..60ae5db8e57592c9300ffdaeb334e476834d43a0 100755 (executable)
@@ -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