diff options
| author | Roman Tsisyk <roman@tsisyk.com> | 2013-11-04 11:22:27 +0400 |
|---|---|---|
| committer | Roman Tsisyk <roman@tsisyk.com> | 2013-11-04 11:22:27 +0400 |
| commit | 9c13a6817b734968c96d284176b048f509fa58f2 (patch) | |
| tree | 4a37ed0472b4b0d04ba84dc990391477236ea7a8 /src | |
| parent | f3fae7c816bba9da85fbd42725933d94444aceef (diff) | |
| download | luarocks-9c13a6817b734968c96d284176b048f509fa58f2.tar.gz luarocks-9c13a6817b734968c96d284176b048f509fa58f2.tar.bz2 luarocks-9c13a6817b734968c96d284176b048f509fa58f2.zip | |
Fix #174: An extra parenthesis in build/cmake.lua
Diffstat (limited to 'src')
| -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 | ||
