From ea8302bd2596eac37021c519bb5c4c220d886d73 Mon Sep 17 00:00:00 2001 From: brarcher Date: Thu, 12 Mar 2015 02:50:43 +0000 Subject: [PATCH] Do not remove check.info during 'clean' target It was observed that if one does not have texinfo installed and invoked "make clean" then a subsequent build will fail because the docs cannot be built. The issue is that "make clean" will remove check.info and require it be rebuilt. git-svn-id: svn+ssh://svn.code.sf.net/p/check/code/trunk@1198 64e312b2-a51f-0410-8e61-82d0ca0eb02a --- doc/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index 747d7c7..1a58ffa 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -111,7 +111,7 @@ example_cmake = example/CMakeLists.txt \ ## what to clean -CLEANFILES = check.info *~ *.diff +CLEANFILES = *~ *.diff clean-local: rm -rf check_html -- 2.50.1