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 2011/06/05 10:51:52 UTC

svn commit: r1132155 - /incubator/mesos/trunk/src/Makefile.in

Author: benh
Date: Sun Jun  5 08:51:52 2011
New Revision: 1132155

URL: http://svn.apache.org/viewvc?rev=1132155&view=rev
Log:
Fixed bugs in src/Makefile.in due to bad paths. This had broken the build.

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

Modified: incubator/mesos/trunk/src/Makefile.in
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/Makefile.in?rev=1132155&r1=1132154&r2=1132155&view=diff
==============================================================================
--- incubator/mesos/trunk/src/Makefile.in (original)
+++ incubator/mesos/trunk/src/Makefile.in Sun Jun  5 08:51:52 2011
@@ -343,11 +343,11 @@ endif
 $(DEPLOY_FILES): $(DEPLOYDIR)/%: @srcdir@/deploy/% | $(DEPLOYDIR)
 	cp -r $< $@
 
-$(CONFDIR)/mesos.conf: | @srcdir@/conf/mesos.conf.template $(CONFDIR)
-	cp -r @srcdir@/conf/mesos.conf.template $@
+$(CONFDIR)/mesos.conf: @srcdir@/conf/mesos.conf.template | $(CONFDIR)
+	cp -r $< $@
 
-$(CONFDIR)/deploy-env.sh: | ./conf/deploy-env.sh.template $(CONFDIR)
-	cp -r ./conf/deploy-env.sh.template $@
+$(CONFDIR)/deploy-env.sh: @srcdir@/conf/deploy-env.sh.template | $(CONFDIR)
+	cp -r $< $@
 
 test: all
 	$(MAKE) -C tests test