From 74fcf3e4293e3685f5a778b42d9bfc07682c4442 Mon Sep 17 00:00:00 2001 From: Jean Privat Date: Thu, 28 May 2015 10:27:01 -0400 Subject: [PATCH] compiler: rename compilation dir as `nit_compile` Signed-off-by: Jean Privat fix rename --- src/compiler/abstract_compiler.nit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/abstract_compiler.nit b/src/compiler/abstract_compiler.nit index 8d3f7db..48a19a8 100644 --- a/src/compiler/abstract_compiler.nit +++ b/src/compiler/abstract_compiler.nit @@ -149,7 +149,7 @@ class Toolchain fun compile_dir: String do var compile_dir = toolcontext.opt_compile_dir.value - if compile_dir == null then compile_dir = ".nit_compile" + if compile_dir == null then compile_dir = "nit_compile" return compile_dir end @@ -327,7 +327,7 @@ class MakefileToolchain var outpath = real_outpath.escape_to_mk if outpath != real_outpath then # If the name is crazy and need escaping, we will do an indirection - # 1. generate the binary in the .nit_compile dir under an escaped name + # 1. generate the binary in the nit_compile dir under an escaped name # 2. copy the binary at the right place in the `all` goal. outpath = mainmodule.c_name end -- 1.7.9.5