Index: tools/gcmole/gcmole.lua |
diff --git a/tools/gcmole/gcmole.lua b/tools/gcmole/gcmole.lua |
index 5c5e502926a5a60f88dcc8460ff62897902ff458..bdbdf36a416c6a5f62a184cc2844bb242ca6cc88 100644 |
--- a/tools/gcmole/gcmole.lua |
+++ b/tools/gcmole/gcmole.lua |
@@ -197,7 +197,7 @@ local function ParseGYPFile() |
local gyp_file = assert(io.open(filename), "failed to open GYP file") |
local gyp = gyp_file:read('*a') |
for condition, sources in |
- gyp:gmatch "'sources': %[.-### gcmole%((.-)%) ###(.-)%]" do |
+ gyp:gmatch "%[.-### gcmole%((.-)%) ###(.-)%]" do |
if result[condition] == nil then result[condition] = {} end |
for file in sources:gmatch(pattern) do |
table.insert(result[condition], prefix .. file) |