diff options
author | Tim Potter <tpot@samba.org> | 2003-02-21 05:51:10 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-02-21 05:51:10 +0000 |
commit | 6a46281dbb9c1f1f3278f199e812ba71bd0b45b8 (patch) | |
tree | 5391ee432ee8e3b23a3f00d55d51628c935e9e58 | |
parent | e1c987abf2c716e26d2484a89e23507d1d2a9c5e (diff) | |
download | samba-6a46281dbb9c1f1f3278f199e812ba71bd0b45b8.tar.gz samba-6a46281dbb9c1f1f3278f199e812ba71bd0b45b8.tar.bz2 samba-6a46281dbb9c1f1f3278f199e812ba71bd0b45b8.zip |
Ignore errors on python_clean target.
(This used to be commit 3805a9c5d5e98e089e1cd9e794f7204fc354a311)
-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 efc3b935b4..cbd8418a48 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -1085,7 +1085,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: |