build.sh: clean-target now also removes .config

This commit is contained in:
Calin Crisan 2018-03-17 17:18:47 +02:00
parent 50688d8b93
commit 39e565c228

View File

@ -102,6 +102,11 @@ elif [ "$target" == "clean-target" ]; then
find $outputdir/build -name .stamp_host_installed | xargs -r rm
fi
if [ -f $outputdir/.config ]; then
echo "removing .config file"
rm -f $outputdir/.config
fi
echo "target is clean"
elif [ -n "$target" ]; then