Denys Vlasenko wrote:
On Tuesday 26 November 2013 22:47, Daniel Borca wrote:
Resubmitted.


$ git am -si /tmp/06-gen-not.patch
Patch does not have a valid e-mail address.

Odd.

Resubmitted, hope it's okay now.

-dborca
From c619c0e51d0b893d88c4a2170e90510562dd4282 Mon Sep 17 00:00:00 2001
From: Daniel Borca <[email protected]>
Date: Thu, 28 Nov 2013 16:19:57 +0200
Subject: [PATCH] build system: use find ! instead of find -not

find -not is not available in non-CONFIG_DESKTOPed busybox find

Signed-off-by: Daniel Borca <[email protected]>
---
 scripts/gen_build_files.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/gen_build_files.sh b/scripts/gen_build_files.sh
index 0989b2f..38cbc5a 100755
--- a/scripts/gen_build_files.sh
+++ b/scripts/gen_build_files.sh
@@ -61,7 +61,7 @@ sed -n -e 's@^//usage:\([ \t].*\)$@\1 \\@p' -e 
's@^//usage:\([^ \t].*\)$@\n\1 \\
 
 # (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#./}"
 
-- 
1.7.4.4

_______________________________________________
busybox mailing list
[email protected]
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to