aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2018-08-05 16:15:27 +1000
committerHisham Muhammad <hisham@gobolinux.org>2018-08-10 22:49:47 -0300
commit2944a0bf20710144f58dd166374c6e48c66e2865 (patch)
tree3246fa8f996a40246ba2e5db1ba4085f2573e099
parentf41044e511baeeb24a5b0a833ec8d17f81794785 (diff)
downloadluarocks-2944a0bf20710144f58dd166374c6e48c66e2865.tar.gz
luarocks-2944a0bf20710144f58dd166374c6e48c66e2865.tar.bz2
luarocks-2944a0bf20710144f58dd166374c6e48c66e2865.zip
GNUmakefile: Clean up the install-binary target
-rw-r--r--GNUmakefile15
1 files changed, 6 insertions, 9 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 31620502..97fada4d 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -132,15 +132,12 @@ build-binary/luarocks-admin.exe: luarocks
132# Binary install 132# Binary install
133# ---------------------------------------- 133# ----------------------------------------
134 134
135install-binary: build-binary/luarocks.exe build-binary/luarocks-admin.exe 135LUAROCKS_CORE_FILES = $(wildcard src/luarocks/core/* src/luarocks/loader.lua)
136 mkdir -p "$(DESTDIR)$(bindir)" 136INSTALL_BINARY_FILES = $(patsubst src/%, $(DESTDIR)$(luadir)/%, $(LUAROCKS_CORE_FILES))
137 cp build-binary/luarocks.exe "$(DESTDIR)$(bindir)/luarocks" 137
138 chmod +rx "$(DESTDIR)$(bindir)/luarocks" 138install-binary: $(INSTALL_BINARY_FILES) build-binary/luarocks.exe build-binary/luarocks-admin.exe
139 cp build-binary/luarocks-admin.exe "$(DESTDIR)$(bindir)/luarocks-admin" 139 $(INSTALL) -D build-binary/luarocks.exe "$(DESTDIR)$(bindir)/luarocks"
140 chmod +rx "$(DESTDIR)$(bindir)/luarocks-admin" 140 $(INSTALL) -D build-binary/luarocks-admin.exe "$(DESTDIR)$(bindir)/luarocks-admin"
141 mkdir -p "$(DESTDIR)$(luadir)/luarocks/core"
142 cp -a src/luarocks/core/* "$(DESTDIR)$(luadir)/luarocks/core"
143 cp -a src/luarocks/loader.lua "$(DESTDIR)$(luadir)/luarocks/"
144 141
145# ---------------------------------------- 142# ----------------------------------------
146# Bootstrap install 143# Bootstrap install