Skip to content

Commit

Permalink
Fix paths (was wrong before as the source is built by checking out fr…
Browse files Browse the repository at this point in the history
…om git)
  • Loading branch information
djungelorm committed Jan 26, 2016
1 parent afdca6c commit c8fc197
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions protobuf.rockspec.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@ dependencies = {
build = {
type = "builtin",
modules = {
protobuf = "protobuf-lua/protobuf/init.lua",
["protobuf.containers"] = "protobuf-lua/protobuf/containers.lua",
["protobuf.encoder"] = "protobuf-lua/protobuf/encoder.lua",
["protobuf.decoder"] = "protobuf-lua/protobuf/decoder.lua",
["protobuf.descriptor"] = "protobuf-lua/protobuf/descriptor.lua",
["protobuf.text_format"] = "protobuf-lua/protobuf/text_format.lua",
["protobuf.wire_format"] = "protobuf-lua/protobuf/wire_format.lua",
["protobuf.listener"] = "protobuf-lua/protobuf/listener.lua",
["protobuf.type_checkers"] = "protobuf-lua/protobuf/type_checkers.lua",
["protobuf.pb"] = { sources = {"protobuf-lua/protobuf/pb.c"} }
protobuf = "protobuf/init.lua",
["protobuf.containers"] = "protobuf/containers.lua",
["protobuf.encoder"] = "protobuf/encoder.lua",
["protobuf.decoder"] = "protobuf/decoder.lua",
["protobuf.descriptor"] = "protobuf/descriptor.lua",
["protobuf.text_format"] = "protobuf/text_format.lua",
["protobuf.wire_format"] = "protobuf/wire_format.lua",
["protobuf.listener"] = "protobuf/listener.lua",
["protobuf.type_checkers"] = "protobuf/type_checkers.lua",
["protobuf.pb"] = { sources = {"protobuf/pb.c"} }
},
copy_directories = {"protoc-plugin"}
}

0 comments on commit c8fc197

Please sign in to comment.