24 lines
1.4 KiB
Diff
24 lines
1.4 KiB
Diff
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||
|
From: Peter Jones <pjones@redhat.com>
|
||
|
Date: Mon, 29 Jul 2019 14:01:50 -0400
|
||
|
Subject: [PATCH] autogen.sh: use find -wholename for long path matches
|
||
|
|
||
|
Signed-off-by: Peter Jones <pjones@redhat.com>
|
||
|
---
|
||
|
autogen.sh | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/autogen.sh b/autogen.sh
|
||
|
index ef43270fca0..a1783d62c26 100755
|
||
|
--- a/autogen.sh
|
||
|
+++ b/autogen.sh
|
||
|
@@ -13,7 +13,7 @@ fi
|
||
|
export LC_COLLATE=C
|
||
|
unset LC_ALL
|
||
|
|
||
|
-find . -iname '*.[ch]' ! -ipath './grub-core/lib/libgcrypt-grub/*' ! -ipath './build-aux/*' ! -ipath './grub-core/lib/libgcrypt/src/misc.c' ! -ipath './grub-core/lib/libgcrypt/src/global.c' ! -ipath './grub-core/lib/libgcrypt/src/secmem.c' ! -ipath './util/grub-gen-widthspec.c' ! -ipath './util/grub-gen-asciih.c' ! -ipath './gnulib/*' ! -iname './grub-core/lib/gnulib/*' |sort > po/POTFILES.in
|
||
|
+find . -iname '*.[ch]' ! -ipath './grub-core/lib/libgcrypt-grub/*' ! -ipath './build-aux/*' ! -ipath './grub-core/lib/libgcrypt/src/misc.c' ! -ipath './grub-core/lib/libgcrypt/src/global.c' ! -ipath './grub-core/lib/libgcrypt/src/secmem.c' ! -ipath './util/grub-gen-widthspec.c' ! -ipath './util/grub-gen-asciih.c' ! -ipath './gnulib/*' ! -wholename './grub-core/lib/gnulib/*' |sort > po/POTFILES.in
|
||
|
find util -iname '*.in' ! -name Makefile.in |sort > po/POTFILES-shell.in
|
||
|
|
||
|
echo "Importing unicode..."
|