From: Tobias Ulmer Date: Wed, 22 Aug 2012 14:33:42 +0000 (+0200) Subject: Install cvs, files, git and svn as plugins X-Git-Tag: e2factory-2.3.13rc1~143 X-Git-Url: https://git.e2factory.org/?a=commitdiff_plain;h=a5572fb4ace8a3e54ed1d15dd43353c7d884b5c9;p=e2factory.git Install cvs, files, git and svn as plugins Signed-off-by: Tobias Ulmer --- diff --git a/local/Makefile b/local/Makefile index 2559212..9b63e9f 100644 --- a/local/Makefile +++ b/local/Makefile @@ -43,12 +43,13 @@ LOCALLUATOOLS = e2-build e2-dlist e2-dsort e2-fetch-sources \ e2-build-numbers e2-cf LOCALSHTOOLS = LUA_LIBS = e2option.lua luafile.lua generic_git.lua err.lua -LUA_LIBS += e2tool.lua scm.lua git.lua svn.lua cvs.lua files.lua +LUA_LIBS += e2tool.lua scm.lua LUA_LIBS += tools.lua transport.lua cache.lua LUA_LIBS += environment.lua plugin.lua url.lua hash.lua lock.lua LUA_LIBS += policy.lua strict.lua e2build.lua LUA_LIBS += e2lib.lua buildconfig.lua LOCALTOOLS = $(LOCALSHTOOLS) $(LOCALLUATOOLS) +LOCALPLUGINS = cvs.lua files.lua git.lua svn.lua .PHONY: all install uninstall install install-local doc install-doc @@ -69,6 +70,9 @@ install-local-lua: $(LUA_LIBS) install-local: all install-local-dirs install-local-lua install-local-sourcefiles test -n "$(PROJECTDIR)" install -m 755 -d $(LOCALPLUGINDIR) + for p in $(LOCALPLUGINS) ; do \ + install -m 644 $$p $(LOCALPLUGINDIR)/$$p; \ + done for i in $(LOCALLUATOOLS); do \ install -m 755 $$i.lua $(LOCALBINDIR)/$$i; \ done