[PATCH 5 of 7] fuzz: fix "make clean" to pass even if no binaries built yet

Yuya Nishihara yuya at tcha.org
Sun Jun 3 02:43:43 EDT 2018


# HG changeset patch
# User Yuya Nishihara <yuya at tcha.org>
# Date 1527999673 -32400
#      Sun Jun 03 13:21:13 2018 +0900
# Node ID 125bc211085fadbc9ef6fb717d254c2e007115c1
# Parent  c907c0ec7e20a0b0f8c7bb818140f4497664c158
fuzz: fix "make clean" to pass even if no binaries built yet

diff --git a/contrib/fuzz/Makefile b/contrib/fuzz/Makefile
--- a/contrib/fuzz/Makefile
+++ b/contrib/fuzz/Makefile
@@ -51,7 +51,7 @@ xdiff_fuzzer: xdiff.cc fuzz-xdiffi.o fuz
 	  -lFuzzingEngine -o $$OUT/xdiff_fuzzer
 
 clean:
-	rm *.o *_fuzzer \
+	$(RM) *.o *_fuzzer \
 	  bdiff \
 	  xdiff
 


More information about the Mercurial-devel mailing list