From 65cc6e10034b0b041a26b5cc62bd3cd028a4fa1b Mon Sep 17 00:00:00 2001 From: Calin Crisan Date: Sat, 31 Mar 2018 17:10:35 +0300 Subject: [PATCH] build.sh: clean-target: remove .stamp_images_installed files --- build.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 86e48ba056..4ffd9268cf 100755 --- a/build.sh +++ b/build.sh @@ -102,6 +102,9 @@ elif [ "$target" == "clean-target" ]; then echo "removing .stamp_host_installed files" find $outputdir/build -name .stamp_host_installed | xargs -r rm + + echo "removing .stamp_images_installed files" + find $outputdir/build -name .stamp_images_installed | xargs -r rm fi if [ -f $outputdir/.config ]; then @@ -118,7 +121,7 @@ elif [ -n "$target" ]; then make O=$outputdir $target else # if [ -z "$target ] - $0 $b all + $0 $board all echo "build successful" fi