From 19a6ecddbf07bc892142e9653c731cd36ea8fb5a Mon Sep 17 00:00:00 2001 From: aj Date: Thu, 11 Sep 2008 11:39:47 +0000 Subject: [PATCH] the "-" for make must be in the first line of a multi column command, not somewhere in the middle. this code makes shell look for "-rm" command which does not exist. fixing. "-" is not required in these cases, as "rm -f" always returns 0. git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@3564 c6295689-39f2-0310-b995-f0e70906c6a9 --- doc/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index 1b938ac8..09272ba8 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -95,8 +95,8 @@ maintainer-clean-local: distclean-local: -rm -fr html.tmp man.tmp api.work if test -L html.out; then \ - -rm -rf html.out; \ + rm -rf html.out; \ fi if test -L man.out; then \ - -rm -rf man.out; \ + rm -rf man.out; \ fi