Skip to content

Commit ea2971d

Browse files
authored
Merge pull request #1910 from Jarod42/fix_case
Fix case.
2 parents f4a5281 + 3e50620 commit ea2971d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

modules/codelite/codelite_project.lua

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -388,19 +388,19 @@
388388
local dependencies = {}
389389
local makefilerules = {}
390390
local function addrule(dependencies, makefilerules, config, filename)
391-
if #config.buildcommands == 0 or #config.buildOutputs == 0 then
391+
if #config.buildcommands == 0 or #config.buildoutputs == 0 then
392392
return false
393393
end
394-
local inputs = table.implode(project.getrelative(cfg.project, config.buildInputs), "", "", " ")
394+
local inputs = table.implode(project.getrelative(cfg.project, config.buildinputs), "", "", " ")
395395
if filename ~= "" and inputs ~= "" then
396396
filename = filename .. " "
397397
end
398-
local outputs = project.getrelative(cfg.project, config.buildOutputs[1])
398+
local outputs = project.getrelative(cfg.project, config.buildoutputs[1])
399399
local buildmessage = ""
400400
if config.buildmessage then
401401
buildmessage = "\t@{ECHO} " .. config.buildmessage .. "\n"
402402
end
403-
local commands = table.implode(config.buildCommands,"\t","\n","")
403+
local commands = table.implode(config.buildcommands,"\t","\n","")
404404
table.insert(makefilerules, os.translateCommandsAndPaths(outputs .. ": " .. filename .. inputs .. "\n" .. buildmessage .. commands, cfg.project.basedir, cfg.project.location))
405405
table.insertflat(dependencies, outputs)
406406
return true

modules/vstudio/vs2010_vcxproj.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,7 @@
430430
end
431431

432432
function m.buildStep(cfg)
433-
if #cfg.buildCommands > 0 or #cfg.buildOutputs > 0 or #cfg.buildInputs > 0 or cfg.buildMessage then
433+
if #cfg.buildcommands > 0 or #cfg.buildoutputs > 0 or #cfg.buildinputs > 0 or cfg.buildmessage then
434434

435435
p.push('<CustomBuildStep>')
436436
p.callArray(m.elements.buildStep, cfg)

0 commit comments

Comments
 (0)