aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2017-08-12 14:02:39 +0200
committerHisham Muhammad <hisham@gobolinux.org>2017-10-04 10:12:15 -0300
commitd8a34f03982522170d2e5463194530186e67038b (patch)
treedd0c404f85d29a437e8f07c0742cf9fe27d8c896
parent40d1e4f2e6619c28c39cfa203900cf920775b343 (diff)
downloadluarocks-d8a34f03982522170d2e5463194530186e67038b.tar.gz
luarocks-d8a34f03982522170d2e5463194530186e67038b.tar.bz2
luarocks-d8a34f03982522170d2e5463194530186e67038b.zip
Makefile.setup.inc: do not include trailing slash in LUADIR
LUADIR is used with a following slash everywhere, and it looks confusing when seeing "//" during the build.
-rw-r--r--Makefile.setup.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.setup.inc b/Makefile.setup.inc
index 0167b55c..0fc4347e 100644
--- a/Makefile.setup.inc
+++ b/Makefile.setup.inc
@@ -2,7 +2,7 @@
2DESTDIR = 2DESTDIR =
3PREFIX ?= /usr/local 3PREFIX ?= /usr/local
4BINDIR ?= $(PREFIX)/bin 4BINDIR ?= $(PREFIX)/bin
5LUADIR ?= $(PREFIX)/share/lua/$(LUA_VERSION)/ 5LUADIR ?= $(PREFIX)/share/lua/$(LUA_VERSION)
6 6
7BIN_FILES = luarocks luarocks-admin 7BIN_FILES = luarocks luarocks-admin
8LUAROCKS_FILES = fs.lua dir.lua repos.lua command_line.lua upload/api.lua upload/multipart.lua \ 8LUAROCKS_FILES = fs.lua dir.lua repos.lua command_line.lua upload/api.lua upload/multipart.lua \