grub-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH v2 4/4] autogen: Replace -iname with -ipath in find command


From: Daniel Kiper
Subject: [PATCH v2 4/4] autogen: Replace -iname with -ipath in find command
Date: Fri, 3 Apr 2020 14:45:03 +0200

..because -iname cannot be used to match paths.

Signed-off-by: Daniel Kiper <address@hidden>
---
 autogen.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/autogen.sh b/autogen.sh
index ef43270fc..31b0ced7e 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/*' ! -ipath './grub-core/lib/gnulib/*' |sort > po/POTFILES.in
 find util -iname '*.in' ! -name Makefile.in  |sort > po/POTFILES-shell.in
 
 echo "Importing unicode..."
-- 
2.11.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]