Fixed issue with the OBJDIR value not being escaped

This commit is contained in:
Sam Surtees 2017-04-25 02:33:52 +10:00
parent 74b2f4680e
commit 9c09a7142f

View File

@ -232,7 +232,7 @@
---------------------------------------------------------------------------
function make.objdir(cfg)
_x(' OBJDIR = %s', project.getrelative(cfg.project, cfg.objdir))
_x(' OBJDIR = %s', premake.esc(project.getrelative(cfg.project, cfg.objdir)))
end