diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-05-27 02:33:31 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-05-27 02:33:31 +0200 |
commit | 76c936f5221f4cbd5466cde8716d56fb7dce62e1 (patch) | |
tree | 9e601e16c105b15c0352a7833847b24427882217 | |
parent | a3581409c200568769fc00cddb247456324fb43b (diff) | |
download | busybox-76c936f5221f4cbd5466cde8716d56fb7dce62e1.tar.gz |
build system: make gen_build_files.sh messages more inline with the rest
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rwxr-xr-x | scripts/gen_build_files.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/gen_build_files.sh b/scripts/gen_build_files.sh index d2db907f3..b3aa132a3 100755 --- a/scripts/gen_build_files.sh +++ b/scripts/gen_build_files.sh @@ -8,10 +8,11 @@ cd -- "$2" || { echo "Syntax: $0 SRCTREE OBJTREE"; exit 1; } srctree="$1" find -type d | while read -r d; do + d="${d#./}" src="$srctree/$d/Kbuild.src" dst="$d/Kbuild" if test -f "$src"; then - echo " CHK $dst" + #echo " CHK $dst" s=`sed -n 's@^//kbuild:@@p' -- "$srctree/$d"/*.c` echo "# DO NOT EDIT. This file is generated from Kbuild.src" >"$dst.$$.tmp" @@ -36,7 +37,7 @@ find -type d | while read -r d; do src="$srctree/$d/Config.src" dst="$d/Config.in" if test -f "$src"; then - echo " CHK $dst" + #echo " CHK $dst" s=`sed -n 's@^//config:@@p' -- "$srctree/$d"/*.c` echo "# DO NOT EDIT. This file is generated from Config.src" >"$dst.$$.tmp" |