build system: for "find", use POSIX not operator (!) instead of -not
authorDenys Vlasenko <vda.linux@googlemail.com>
Sun, 16 Mar 2014 11:05:58 +0000 (12:05 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Sun, 16 Mar 2014 11:05:58 +0000 (12:05 +0100)
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
scripts/gen_build_files.sh

index e8fa831bed01a5dca0843597e598f846b8ed0465..ebee17c641807d6e255d7bc371b3af6c20324954 100755 (executable)
@@ -71,7 +71,7 @@ sed -n -e 's@^//usage:\([ '"$TAB"'].*\)$@\1 \\@p' \
 
 # (Re)generate */Kbuild and */Config.in
 # We skip .dotdirs - makes git/svn/etc users happier
-{ cd -- "$srctree" && find . -type d -not '(' -name '.?*' -prune ')'; } \
+{ cd -- "$srctree" && find . -type d ! '(' -name '.?*' -prune ')'; } \
 | while read -r d; do
        d="${d#./}"