diff options
author | hisham <hisham@9ca3f7c1-7366-0410-b1a3-b5c78f85698c> | 2009-05-06 23:34:20 +0000 |
---|---|---|
committer | hisham <hisham@9ca3f7c1-7366-0410-b1a3-b5c78f85698c> | 2009-05-06 23:34:20 +0000 |
commit | 9bc8dfcbe6f191d00479ba57f441c583360ce786 (patch) | |
tree | 4d64e55666e67093aa9db154e4b3a95ad3750af2 /src | |
parent | c92a57123f5cef79ab7dfe6330f20356e5770504 (diff) | |
download | luarocks-9bc8dfcbe6f191d00479ba57f441c583360ce786.tar.gz luarocks-9bc8dfcbe6f191d00479ba57f441c583360ce786.tar.bz2 luarocks-9bc8dfcbe6f191d00479ba57f441c583360ce786.zip |
bugfix
git-svn-id: http://luarocks.org/svn/luarocks/trunk@19 9ca3f7c1-7366-0410-b1a3-b5c78f85698c
Diffstat (limited to 'src')
-rw-r--r-- | src/luarocks/build.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/luarocks/build.lua b/src/luarocks/build.lua index 5d527876..74e80d62 100644 --- a/src/luarocks/build.lua +++ b/src/luarocks/build.lua | |||
@@ -79,7 +79,7 @@ function apply_patches(rockspec) | |||
79 | extract_from_rockspec(build.patches) | 79 | extract_from_rockspec(build.patches) |
80 | for patch, patchdata in util.sortedpairs(build.patches) do | 80 | for patch, patchdata in util.sortedpairs(build.patches) do |
81 | print("Applying patch "..patch.."...") | 81 | print("Applying patch "..patch.."...") |
82 | local ok, err = fs.apply_patch(tostring(patch, patchdata)) | 82 | local ok, err = fs.apply_patch(tostring(patch), patchdata) |
83 | if not ok then | 83 | if not ok then |
84 | return nil, "Failed applying patch "..patch | 84 | return nil, "Failed applying patch "..patch |
85 | end | 85 | end |