aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormpeterv <mpeterval@gmail.com>2015-12-06 21:53:59 +0300
committermpeterv <mpeterval@gmail.com>2015-12-06 21:57:32 +0300
commit515db853f6631e92b5950bcedf392db2d35e919a (patch)
tree651d49faf53dad4c837bad5bae9dbfc5e7392c4b
parentbf12327a64400884b2be50c88cc8b223db57260c (diff)
downloadluarocks-515db853f6631e92b5950bcedf392db2d35e919a.tar.gz
luarocks-515db853f6631e92b5950bcedf392db2d35e919a.tar.bz2
luarocks-515db853f6631e92b5950bcedf392db2d35e919a.zip
Fix find_program() in configure
which returns path to the program, not to the directory containing it. That causes errors when configuring without --with-lua. The fix is to apply 'dirname' if 'command -v' was a success.
-rwxr-xr-xconfigure6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure b/configure
index 8b99b2ae..75ba4039 100755
--- a/configure
+++ b/configure
@@ -71,7 +71,11 @@ EOF
71# Helper functions 71# Helper functions
72 72
73find_program() { 73find_program() {
74 command -v "$1" 2>/dev/null 74 prog=`command -v "$1" 2>/dev/null`
75 if [ -n "$prog" ]
76 then
77 dirname "$prog"
78 fi
75} 79}
76 80
77die() { 81die() {