]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
Replace find -not by the POSIX-compliant find !.
authorGrégoire Sutre <gregoire.sutre@gmail.com>
Mon, 12 Aug 2013 12:29:36 +0000 (14:29 +0200)
committerGrégoire Sutre <gregoire.sutre@gmail.com>
Mon, 12 Aug 2013 12:29:36 +0000 (14:29 +0200)
ChangeLog
autogen.sh

index 128d13e3ce7c576d38306f2e00567c51aeed3155..628d7e92c1f9d0b53607d3c7e044b3c5a2391928 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-08-12  Grégoire Sutre  <gregoire.sutre@gmail.com>
+
+       * autogen.sh: Replace find -not by the POSIX-compliant find !.
+
 2013-08-12  Grégoire Sutre  <gregoire.sutre@gmail.com>
 
        Prevent shadowing of stdlib's devname(3) on BSD.
index d63a79a22e64381ea7c540dc4813f39ac03b8f89..466a42b2466edd71db040280f7eb6beaf234faee 100755 (executable)
@@ -6,8 +6,8 @@ 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/*' -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
-find util -iname '*.in' -not -name Makefile.in  |sort > po/POTFILES-shell.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' |sort > po/POTFILES.in
+find util -iname '*.in' ! -name Makefile.in  |sort > po/POTFILES-shell.in
 
 autogen --version >/dev/null || exit 1