diff options
| author | Hisham Muhammad <hisham@gobolinux.org> | 2013-11-04 04:49:08 -0800 |
|---|---|---|
| committer | Hisham Muhammad <hisham@gobolinux.org> | 2013-11-04 04:49:08 -0800 |
| commit | 84c13dbefb115fdeefb70f9460b38106f60fbfc2 (patch) | |
| tree | 4a37ed0472b4b0d04ba84dc990391477236ea7a8 | |
| parent | f3fae7c816bba9da85fbd42725933d94444aceef (diff) | |
| parent | 9c13a6817b734968c96d284176b048f509fa58f2 (diff) | |
| download | luarocks-84c13dbefb115fdeefb70f9460b38106f60fbfc2.tar.gz luarocks-84c13dbefb115fdeefb70f9460b38106f60fbfc2.tar.bz2 luarocks-84c13dbefb115fdeefb70f9460b38106f60fbfc2.zip | |
Merge pull request #175 from rtsisyk/gh-174
Fix #174: An extra parenthesis in build/cmake.lua
| -rw-r--r-- | src/luarocks/build/cmake.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/build/cmake.lua b/src/luarocks/build/cmake.lua index f1737876..0df3a921 100644 --- a/src/luarocks/build/cmake.lua +++ b/src/luarocks/build/cmake.lua | |||
| @@ -22,7 +22,7 @@ function run(rockspec) | |||
| 22 | 22 | ||
| 23 | util.variable_substitutions(variables, rockspec.variables) | 23 | util.variable_substitutions(variables, rockspec.variables) |
| 24 | 24 | ||
| 25 | if not fs.execute_quiet(rockspec.variables.CMAKE, "--help")) then | 25 | if not fs.execute_quiet(rockspec.variables.CMAKE, "--help") then |
| 26 | return nil, "'"..rockspec.variables.CMAKE.."' program not found. Is cmake installed? You may want to edit variables.CMAKE" | 26 | return nil, "'"..rockspec.variables.CMAKE.."' program not found. Is cmake installed? You may want to edit variables.CMAKE" |
| 27 | end | 27 | end |
| 28 | 28 | ||
