From: Tobias Ulmer Date: Mon, 20 Aug 2012 12:14:23 +0000 (+0200) Subject: Rename local tools for better identification in the source tree X-Git-Tag: e2factory-2.3.13rc1~152 X-Git-Url: https://git.e2factory.org/?a=commitdiff_plain;h=36519fc61c71b96ba2c4acf1285e82b25b3d1a9a;p=e2factory.git Rename local tools for better identification in the source tree Signed-off-by: Tobias Ulmer --- diff --git a/local/Makefile b/local/Makefile index 2da595c..2559212 100644 --- a/local/Makefile +++ b/local/Makefile @@ -38,9 +38,9 @@ CLEAN_FILES = *~ *.so linux32 *.o CFLAGS += -I. -I$(DESTDIR)$(INCDIR) -I$(DESTDIR)$(INCDIR)/lua-$(LUA_VERSION) \ -I../lua/lua-$(LUA_VERSION)/src -fPIC LDFLAGS += -L. -L../lua/lua-$(LUA_VERSION)/src -Wl,-R$(LIBDIR) -LOCALLUATOOLS = \ - build dlist dsort fetch-sources new-source ls-project \ - playground build-numbers cf +LOCALLUATOOLS = e2-build e2-dlist e2-dsort e2-fetch-sources \ + e2-new-source e2-ls-project e2-playground \ + 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 @@ -57,7 +57,7 @@ all: linux32 sha1.so luafile_ll.so e2util.so install: for i in $(LOCALTOOLS); do \ - ln -sf e2 $(DESTDIR)$(BINDIR)/e2-$$i ; \ + ln -sf e2 $(DESTDIR)$(BINDIR)/$$i ; \ done install-local-dirs: @@ -70,10 +70,10 @@ install-local: all install-local-dirs install-local-lua install-local-sourcefile test -n "$(PROJECTDIR)" install -m 755 -d $(LOCALPLUGINDIR) for i in $(LOCALLUATOOLS); do \ - install -m 755 $$i.lua $(LOCALBINDIR)/e2-$$i; \ + install -m 755 $$i.lua $(LOCALBINDIR)/$$i; \ done for i in $(LOCALSHTOOLS); do \ - install -m 755 $$i $(LOCALBINDIR)/e2-$$i; \ + install -m 755 $$i $(LOCALBINDIR)/$$i; \ done install -m755 linux32 $(LOCALBINDIR)/e2-linux32; \ install -m644 linux32.c $(LOCALMAKDIR)/ diff --git a/local/build-numbers.lua b/local/e2-build-numbers.lua similarity index 100% rename from local/build-numbers.lua rename to local/e2-build-numbers.lua diff --git a/local/build.lua b/local/e2-build.lua similarity index 100% rename from local/build.lua rename to local/e2-build.lua diff --git a/local/cf.lua b/local/e2-cf.lua similarity index 100% rename from local/cf.lua rename to local/e2-cf.lua diff --git a/local/dlist.lua b/local/e2-dlist.lua similarity index 100% rename from local/dlist.lua rename to local/e2-dlist.lua diff --git a/local/dsort.lua b/local/e2-dsort.lua similarity index 100% rename from local/dsort.lua rename to local/e2-dsort.lua diff --git a/local/fetch-sources.lua b/local/e2-fetch-sources.lua similarity index 100% rename from local/fetch-sources.lua rename to local/e2-fetch-sources.lua diff --git a/local/ls-project.lua b/local/e2-ls-project.lua similarity index 100% rename from local/ls-project.lua rename to local/e2-ls-project.lua diff --git a/local/new-source.lua b/local/e2-new-source.lua similarity index 100% rename from local/new-source.lua rename to local/e2-new-source.lua diff --git a/local/playground.lua b/local/e2-playground.lua similarity index 100% rename from local/playground.lua rename to local/e2-playground.lua