From 4cd47c494e1f802b102d94a099894ecf688b52d8 Mon Sep 17 00:00:00 2001 From: knarf Date: Mon, 17 Mar 2014 19:26:46 +0000 Subject: Barry Wardell: Show paths relative to CCTK_HOME in non-verbose output When Cactus is compiling a thorn, it currently prints the absolute path to the file being compiled. This can lead to very long output lines. I suggest instead printing just the path relative to CCTK_HOME. The attached patch implements this, but only when in non-verbose mode. Closing ticket #1561 git-svn-id: http://svn.cactuscode.org/flesh/trunk@5098 17b73243-c579-4c4c-a9d2-2d5706c11dac --- lib/make/make.config.rules.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/make/make.config.rules.in b/lib/make/make.config.rules.in index 5c146a68..2131be6c 100644 --- a/lib/make/make.config.rules.in +++ b/lib/make/make.config.rules.in @@ -51,7 +51,7 @@ endef define NOTIFY_COPYING endef define NOTIFY_COMPILING - echo COMPILING $< + echo COMPILING $(subst $(CCTK_HOME)/,,$<) endef define NOTIFY_POSTPROCESSING endef -- cgit v1.2.3