From e5249ff9b04c1e95da56d578b0704dcdc153c08a Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Fri, 21 Feb 2003 05:51:37 +0000 Subject: Ignore errors on python_clean target. (This used to be commit 9e4eba0ae593cc4422a5ce7bbdc4ab9f06d017b7) --- source3/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/Makefile.in b/source3/Makefile.in index de92924691..c76822df06 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1067,7 +1067,7 @@ python_install: $(PYTHON_OBJS) $(PYTHON) python/setup.py install python_clean: - @if test -n "$(PYTHON)"; then $(PYTHON) python/setup.py clean; fi + @-if test -n "$(PYTHON)"; then $(PYTHON) python/setup.py clean; fi # revert to the previously installed version revert: -- cgit