From 60d913a9b8f6e48441727cc37136116c4ce6826f Mon Sep 17 00:00:00 2001 From: starkos Date: Tue, 21 Apr 2009 19:38:16 +0000 Subject: [PATCH] Fixed spacing issue in clean rule of solution makefile --- src/actions/make/make_solution.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/actions/make/make_solution.lua b/src/actions/make/make_solution.lua index 56e525e6..a5149333 100644 --- a/src/actions/make/make_solution.lua +++ b/src/actions/make/make_solution.lua @@ -61,6 +61,8 @@ -- clean rules _p('clean:') for _ ,prj in ipairs(sln.projects) do - _p(' @${MAKE} --no-print-directory -C %s -f %s clean', _MAKE.esc(path.getrelative(sln.location, prj.location)), _MAKE.esc(_MAKE.getmakefilename(prj, true))) + _p('\t@${MAKE} --no-print-directory -C %s -f %s clean', _MAKE.esc(path.getrelative(sln.location, prj.location)), _MAKE.esc(_MAKE.getmakefilename(prj, true))) end + _p('') + end