Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKir Kolyshkin <kir@openvz.org>2017-02-23 02:15:44 +0300
committerPavel Emelyanov <xemul@virtuozzo.com>2017-03-06 20:44:08 +0300
commitd5df3bf2acd65946149c838917e6f1cce2bd4183 (patch)
treefa28c68e2b605d714141abee3354d9e60c97e984
parente906f7cdd5dadd1f7cc4ed55680452d9aaac8184 (diff)
nmk: return --no-print-directory
A year ago this flag was removed, as parts of criu were build in sub-directories (i.e. by using make -C SUBDIR), and therefore paths printed by make were relevant to a SUBDIR rather than top source dir, which prevented tools like vim from jumping to a correct source file with with error (for more details, see commit XXXXXX "nmk: remove no-print-directory from MAKEFLAGS"). Now, as we have everything (except Documentation and test, which is rather minor) built from top source directory, we can finally add the flag back and enjoy cleaner output. Reviewed-by: Dmitry Safonov <dsafonov@virtuozzo.com> Signed-off-by: Kir Kolyshkin <kir@openvz.org> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
-rw-r--r--scripts/nmk/scripts/include.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/nmk/scripts/include.mk b/scripts/nmk/scripts/include.mk
index 2d04d88ad..711b9da7f 100644
--- a/scripts/nmk/scripts/include.mk
+++ b/scripts/nmk/scripts/include.mk
@@ -30,7 +30,7 @@ endif
# Do not use make's built-in rules and variables
# (this increases performance and avoids hard-to-debug behaviour).
-MAKEFLAGS += -rR
+MAKEFLAGS += -rR --no-print-directory
export MAKEFLAGS
# Avoid funny character set dependencies.