From de0401e7ace23e7882103736ece1000fbbc06101 Mon Sep 17 00:00:00 2001 From: tchernobog Date: Sun, 29 Jan 2006 15:34:22 +0000 Subject: [PATCH] - Make ``make distclean'' to complete cleanly when directory doc/API doesn't exists. git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@256 3ecf2c5c-341e-0410-92b4-d18e462d057c --- doc/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index 16b6dc6..b0cdf1f 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -39,6 +39,6 @@ dist-hook : apidox cp -Rp './API' '$(distdir)/API' distclean-local : - test -d './API' && rm -rf './API' + if test -d './API'; then rm -rf './API'; fi MAINTAINERCLEANFILES = API