You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by ti...@apache.org on 2018/01/26 01:25:45 UTC

mesos git commit: Fixed make clean without Python.

Repository: mesos
Updated Branches:
  refs/heads/master fa0314cef -> 46ebb84b8


Fixed make clean without Python.

Review: https://reviews.apache.org/r/65280/


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/46ebb84b
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/46ebb84b
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/46ebb84b

Branch: refs/heads/master
Commit: 46ebb84b80298f64f1fb97b75f2ecc2c68ba20ea
Parents: fa0314c
Author: Till Toenshoff <to...@me.com>
Authored: Fri Jan 26 02:25:03 2018 +0100
Committer: Till Toenshoff <to...@me.com>
Committed: Fri Jan 26 02:25:03 2018 +0100

----------------------------------------------------------------------
 src/Makefile.am | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/46ebb84b/src/Makefile.am
----------------------------------------------------------------------
diff --git a/src/Makefile.am b/src/Makefile.am
index f30b038..1553386 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -2209,7 +2209,7 @@ all-local: $(MESOS_EGGS)
 endif # HAS_PYTHON
 
 clean-python:
-	find python \( -name "build" -o -name "dist" -o -name "*.pyc"	\
+	-find python \( -name "build" -o -name "dist" -o -name "*.pyc"	\
 	  -o -name "*.egg-info" \) -exec rm -rf '{}' \+
 
 PHONY_TARGETS += clean-python