This updates the git_remote_cvs Makefile to use the same $(shell <cmd>) style used by the top-level git Makefile. Signed-off-by: David Aguilar <davvid@xxxxxxxxx> --- git_remote_cvs/Makefile | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/git_remote_cvs/Makefile b/git_remote_cvs/Makefile index f52c096..d281d48 100644 --- a/git_remote_cvs/Makefile +++ b/git_remote_cvs/Makefile @@ -23,10 +23,13 @@ ifndef V QUIETSETUP = --quiet endif -PYLIBDIR=`$(PYTHON_PATH) -c "import sys; print 'lib/python%i.%i/site-packages' % sys.version_info[:2]"` +PYLIBDIR=$(shell $(PYTHON_PATH) -c \ + "import sys; \ + print 'lib/python%i.%i/site-packages' % sys.version_info[:2]") all: $(pysetupfile) $(QUIET)$(PYTHON_PATH) $(pysetupfile) $(QUIETSETUP) build + install: $(pysetupfile) $(PYTHON_PATH) $(pysetupfile) install \ --prefix $(prefix) \ @@ -34,6 +37,7 @@ install: $(pysetupfile) instlibdir: $(pysetupfile) @echo "$(prefix)/$(PYLIBDIR)" + clean: $(QUIET)$(PYTHON_PATH) $(pysetupfile) $(QUIETSETUP) clean -a $(RM) *.pyo *.pyc -- 1.6.4.169.g64d5 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html