Hi Stepan,
* Stepan Kasal wrote on Wed, Mar 14, 2007 at 01:34:06PM CET:
> the target maintainer-clean contains
> -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
[...]
> Could we perhaps change the above command to:
>
> -test -n "$(MAINTAINERCLEANFILES)" && \
> rm -f $(MAINTAINERCLEANFILES) && \
> cd $(srcdir) && rm -f $(MAINTAINERCLEANFILES)
>
> (I'm willing to implemement this eventually.)
Then make it something like this, please:
-test -z "$(MAINTAINERCLEANFILES)" || \
{ rm -f $(MAINTAINERCLEANFILES) && \
cd $(srcdir) && rm -f $(MAINTAINERCLEANFILES); }
Cheers,
Ralf