This is an automated email from the ASF dual-hosted git repository. janc pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git
commit 9bf905ffd589290d782d909a93ba8cd2d4334256 Author: Szymon Janc <[email protected]> AuthorDate: Thu Jul 20 15:57:59 2023 +0200 porting/npl: Fix linux tests makefile clean target clean target was failing if there was incomplete build. --- porting/npl/linux/test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/porting/npl/linux/test/Makefile b/porting/npl/linux/test/Makefile index c0be3d5f8..ac8c24925 100644 --- a/porting/npl/linux/test/Makefile +++ b/porting/npl/linux/test/Makefile @@ -99,7 +99,7 @@ show_objs: ### ===== Clean ===== clean: @echo "Cleaning artifacts." - rm *~ .depend $(OBJS) *.o *.exe + rm -f .depend $(OBJS) *.o *.exe ### ===== Dependencies ===== ### Rebuild if headers change
