Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2010-08-29 16:39:45 +0400
committerDenys Vlasenko <vda.linux@googlemail.com>2010-08-29 16:39:45 +0400
commitd493e9361fb12804be8a18dba80424e0bb125cdc (patch)
treed1be31e82f4a30f65d1549779736d13a78ae2930 /scripts/mkconfigs
parent9ce07e778f05719115f354d4907f51295fb3fd1a (diff)
remove stray debugging stuff
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'scripts/mkconfigs')
-rwxr-xr-xscripts/mkconfigs3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/mkconfigs b/scripts/mkconfigs
index 38d7ac054..47ac53330 100755
--- a/scripts/mkconfigs
+++ b/scripts/mkconfigs
@@ -64,7 +64,8 @@ echo "\
static const char bbconfig_config_bz2[] ALIGN1 = {"
grep '^#\? \?CONFIG_' "$config" \
-| bzip2 -1 | tee z.bz2 | dd bs=2 skip=1 2>/dev/null | od -v -t x1 \
+| bzip2 -1 | dd bs=2 skip=1 2>/dev/null \
+| od -v -t x1 \
| sed -e 's/^[^ ]*//' \
-e 's/ //g' \
-e '/^$/d' \