From 51b5fcd4896ebbcc20fc17ff12ebc5863243993b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Leroy?= <frederic.leroy@b-com.com>
Date: Thu, 9 Jun 2016 13:19:45 +0200
Subject: [PATCH] build_helper: tell where the log will be written in
 compilations()

build_helper exits early on error. compilations() tells where the
compilation logs can be found after compiling it. So in case of error, it
was never displayed.
Add a log info before compiling
---
 cmake_targets/tools/build_helper | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cmake_targets/tools/build_helper b/cmake_targets/tools/build_helper
index 00f6842ffd..b48f33d282 100755
--- a/cmake_targets/tools/build_helper
+++ b/cmake_targets/tools/build_helper
@@ -109,6 +109,7 @@ clean_all_files() {
 
 compilations() {
   cd $OPENAIR_DIR/cmake_targets/$1/build
+  echo_info "Log file for compilation written in: $dlog/$2.$REL.txt"
   {
     rm -f $3
     if [ "$VERBOSE_COMPILE" == "1" ]; then
-- 
GitLab