You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2012/02/01 00:37:09 UTC

svn commit: r1238861 - /incubator/mesos/trunk/src/Makefile.am

Author: benh
Date: Tue Jan 31 23:37:09 2012
New Revision: 1238861

URL: http://svn.apache.org/viewvc?rev=1238861&view=rev
Log:
Fixes broken build due to bad PYTHONPATH.

Modified:
    incubator/mesos/trunk/src/Makefile.am

Modified: incubator/mesos/trunk/src/Makefile.am
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/Makefile.am?rev=1238861&r1=1238860&r2=1238861&view=diff
==============================================================================
--- incubator/mesos/trunk/src/Makefile.am (original)
+++ incubator/mesos/trunk/src/Makefile.am Tue Jan 31 23:37:09 2012
@@ -515,7 +515,7 @@ $(PROTOBUF_EGG):
 	    ../$(PROTOBUF)/src/google/protobuf; \
 	fi
 	@cd ../$(PROTOBUF)/python && \
-	  PYTHONPATH=../$(SETUPTOOLS) $(PYTHON) setup.py bdist_egg
+	  PYTHONPATH=../../../$(SETUPTOOLS) $(PYTHON) setup.py bdist_egg
 
 CLEANFILES += $(PROTOBUF_EGG)