From 6970053023524caf75ad9b9873acbd320c1c3c87 Mon Sep 17 00:00:00 2001 From: mrdudz Date: Fri, 10 Jul 2015 10:43:00 +0200 Subject: [PATCH] use rm -r instead of rmdir, and use -f for rm, that makes subsequent runs of "make clean" not fail --- test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index 8c005a957..d2ad2ee94 100644 --- a/test/Makefile +++ b/test/Makefile @@ -16,9 +16,9 @@ ifdef CMD_EXE RMDIR = rmdir /s /q $(subst /,\,$1) else EXE := - DEL = $(RM) $1 + DEL = $(RM) -f $1 MKDIR = mkdir $1 - RMDIR = rmdir $1 + RMDIR = $(RM) -rf $1 endif WORKDIR := ../testwrk -- 2.39.5