From 316a515f9b22f9728054971a6b8e69352bdff74a Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Mon, 5 Mar 2012 23:24:16 +0000 Subject: [PATCH] build: clean .log file in tests/conform dir When running the conformance tests we write to a .log file which wasn't being removed by make clean which was causing make release-check to fail. --- tests/conform/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/conform/Makefile.am b/tests/conform/Makefile.am index abdf997f3..684aaaac8 100644 --- a/tests/conform/Makefile.am +++ b/tests/conform/Makefile.am @@ -167,3 +167,4 @@ DISTCLEANFILES += ../../build/win32/vs9/test-conformance-cogl.vcproj \ # we override the clean-generic target to clean up the wrappers so # we cannot use CLEANFILES clean-generic: clean-wrappers + $(QUIET_RM)rm -f .log