aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rwxr-xr-xconfigure4
-rwxr-xr-xmakedist6
3 files changed, 7 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 63c33636..b44ab1ca 100644
--- a/Makefile
+++ b/Makefile
@@ -31,6 +31,8 @@ all:
31 cat src/bin/$$f.bak >> src/bin/$$f ;\ 31 cat src/bin/$$f.bak >> src/bin/$$f ;\
32 rm src/bin/$$f.bak ;\ 32 rm src/bin/$$f.bak ;\
33 done 33 done
34 sed -i.bak "/^local LUA/d" src/luarocks/cfg.lua
35 rm src/luarocks/cfg.lua.bak
34 cp src/luarocks/cfg.lua src/luarocks/cfg.lua.bak 36 cp src/luarocks/cfg.lua src/luarocks/cfg.lua.bak
35 rm src/luarocks/cfg.lua 37 rm src/luarocks/cfg.lua
36 if [ -n "$(PREFIX)" ] ;\ 38 if [ -n "$(PREFIX)" ] ;\
diff --git a/configure b/configure
index 5f4902de..954fa93d 100755
--- a/configure
+++ b/configure
@@ -7,7 +7,7 @@
7 7
8PREFIX="/usr/local" 8PREFIX="/usr/local"
9SYSCONFDIR="$PREFIX/etc/luarocks" 9SYSCONFDIR="$PREFIX/etc/luarocks"
10ROCKS_TREE="$PREFIX/lib/luarocks" 10ROCKS_TREE="$PREFIX"
11SCRIPTS_DIR="" 11SCRIPTS_DIR=""
12LUA_MODULES_DIR="" 12LUA_MODULES_DIR=""
13BIN_MODULES_DIR="" 13BIN_MODULES_DIR=""
@@ -33,7 +33,7 @@ Configure LuaRocks.
33--sysconfdir=DIR Location where the config file should be installed. 33--sysconfdir=DIR Location where the config file should be installed.
34 Default is \$PREFIX/etc/luarocks 34 Default is \$PREFIX/etc/luarocks
35--rocks-tree=FILE Root of the local tree of installed rocks. 35--rocks-tree=FILE Root of the local tree of installed rocks.
36 Default is \$PREFIX/lib/luarocks 36 Default is \$PREFIX
37 37
38Where to install files installed by rocks, to make the accessible to Lua and 38Where to install files installed by rocks, to make the accessible to Lua and
39your \$PATH. Beware of clashes between files installed by LuaRocks and by your 39your \$PATH. Beware of clashes between files installed by LuaRocks and by your
diff --git a/makedist b/makedist
index 3e78040a..ebaae76e 100755
--- a/makedist
+++ b/makedist
@@ -4,7 +4,7 @@ cvslist() {
4 if [ "$1" ] 4 if [ "$1" ]
5 then local prefix="$1/" 5 then local prefix="$1/"
6 fi 6 fi
7 cvs list $1 | grep -v "^?" | while read line 7 svn list $1 | grep -v "^?" | while read line
8 do 8 do
9 local path="$prefix$line" 9 local path="$prefix$line"
10 echo "$path" 10 echo "$path"
@@ -21,10 +21,10 @@ then
21 exit 1 21 exit 1
22fi 22fi
23 23
24cvs list > /dev/null 2> /dev/null 24svn list > /dev/null 2> /dev/null
25if [ $? != 0 ] 25if [ $? != 0 ]
26then 26then
27 echo "Your version of CVS may be too old. At least 1.12 is needed." 27 echo "Your version of svn may be too old."
28 exit 1 28 exit 1
29fi 29fi
30 30