mirror of
https://github.com/sheumann/hush.git
synced 2024-10-31 19:04:47 +00:00
2f32bf8be6
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
15 lines
313 B
Bash
Executable File
15 lines
313 B
Bash
Executable File
#!/bin/sh
|
|
|
|
b=`basename $PWD`
|
|
test "${b#busybox}" != "$b" || { echo "Must be run in busybox tree"; exit 1; }
|
|
|
|
cd ..
|
|
cp -pPR "$b" busybox.$$.test_tree
|
|
cd busybox.$$.test_tree
|
|
make defconfig
|
|
make $MAKEOPTS
|
|
make clean
|
|
cd ..
|
|
diff -urp "$b" busybox.$$.test_tree >busybox.$$.test_tree.diff
|
|
cat busybox.$$.test_tree.diff
|