diff options
author | Tim Potter <tpot@samba.org> | 2003-02-21 05:51:37 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-02-21 05:51:37 +0000 |
commit | e5249ff9b04c1e95da56d578b0704dcdc153c08a (patch) | |
tree | 2c637a36506466df622dc46fc90773e2b16d1fb0 /source3 | |
parent | eae0617c4e86140f2242ecfeef87458aa6881a13 (diff) | |
download | samba-e5249ff9b04c1e95da56d578b0704dcdc153c08a.tar.gz samba-e5249ff9b04c1e95da56d578b0704dcdc153c08a.tar.bz2 samba-e5249ff9b04c1e95da56d578b0704dcdc153c08a.zip |
Ignore errors on python_clean target.
(This used to be commit 9e4eba0ae593cc4422a5ce7bbdc4ab9f06d017b7)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
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: |