From 39e565c228d09b645d8752d9a6fef3c150828732 Mon Sep 17 00:00:00 2001 From: Calin Crisan Date: Sat, 17 Mar 2018 17:18:47 +0200 Subject: [PATCH] build.sh: clean-target now also removes .config --- build.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build.sh b/build.sh index 72afd2972f..6bb1ce9961 100755 --- a/build.sh +++ b/build.sh @@ -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