From: Andre P. <at...@us...> - 2005-08-06 16:45:50
|
Update of /cvsroot/hoc/hoc/docs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20311/docs Modified Files: Makefile.in Log Message: Fix rm command in 'make clean' target so it doesn't complain about rm'ing non-existent files Index: Makefile.in =================================================================== RCS file: /cvsroot/hoc/hoc/docs/Makefile.in,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- Makefile.in 30 Jul 2005 08:33:04 -0000 1.11 +++ Makefile.in 6 Aug 2005 16:45:38 -0000 1.12 @@ -71,5 +71,5 @@ @true clean: - -rm HOC.html pod2htm*.tmp documentation.html + rm -f HOC.html pod2htm*.tmp documentation.html |