diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-06 04:14:28 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-06-06 04:14:28 +0200 |
commit | 2f32bf8be63f70125049402ba43101d8c6083d46 (patch) | |
tree | 8d01d287b58308bbb0bc6748c27357fae0a7aa12 /scripts/test_make_clean | |
parent | f0f94700610eba964441ce4a112134e03c76eb89 (diff) | |
download | busybox-w32-2f32bf8be63f70125049402ba43101d8c6083d46.tar.gz busybox-w32-2f32bf8be63f70125049402ba43101d8c6083d46.tar.bz2 busybox-w32-2f32bf8be63f70125049402ba43101d8c6083d46.zip |
remove defconfig. Now "make defconfig" simply uses defaults from Config.in
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'scripts/test_make_clean')
-rwxr-xr-x | scripts/test_make_clean | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/test_make_clean b/scripts/test_make_clean new file mode 100755 index 000000000..fa3a543d8 --- /dev/null +++ b/scripts/test_make_clean | |||
@@ -0,0 +1,14 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | b=`basename $PWD` | ||
4 | test "${b#busybox}" != "$b" || { echo "Must be run in busybox tree"; exit 1; } | ||
5 | |||
6 | cd .. | ||
7 | cp -pPR "$b" busybox.$$.test_tree | ||
8 | cd busybox.$$.test_tree | ||
9 | make defconfig | ||
10 | make $MAKEOPTS | ||
11 | make clean | ||
12 | cd .. | ||
13 | diff -urp "$b" busybox.$$.test_tree >busybox.$$.test_tree.diff | ||
14 | cat busybox.$$.test_tree.diff | ||