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
This commit is contained in:
aj 2008-09-11 11:39:47 +00:00
parent ff4d6dd101
commit 19a6ecddbf
1 changed files with 2 additions and 2 deletions

View File

@ -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