From: Mathieu Baudier Date: Thu, 20 Jul 2023 04:10:16 +0000 (+0200) Subject: Escape pipe characters X-Git-Tag: v2.3.7~4 X-Git-Url: https://git.argeo.org/?a=commitdiff_plain;h=4d07eac786ac5db1490c992535fd594380182558;p=cc0%2Fargeo-build.git Escape pipe characters --- diff --git a/osgi.mk b/osgi.mk index 3f3a56f..b9927b8 100644 --- a/osgi.mk +++ b/osgi.mk @@ -52,11 +52,11 @@ osgi: $(BUILD_BASE)/built $(MANIFESTS) # Actual build (compilation + bundle packaging) $(BUILD_BASE)/built : BUNDLES_TO_BUILD = $(subst $(abspath $(BUILD_BASE))/,, $(subst to-build,, $?)) $(BUILD_BASE)/built : $(TODOS) - @echo | Compiler : $(ECJ_JAR) - @echo | A2 category : $(A2_CATEGORY) - @echo | Bundles : $(BUNDLES_TO_BUILD) - @echo | Dependencies : $(DEP_CATEGORIES) - @echo | A2 bases : $(A2_BASE) + @echo \| Compiler : $(ECJ_JAR) + @echo \| A2 category : $(A2_CATEGORY) + @echo \| Bundles : $(BUNDLES_TO_BUILD) + @echo \| Dependencies : $(DEP_CATEGORIES) + @echo \| A2 bases : $(A2_BASE) @$(ARGEO_MAKE) \ all --a2-bases $(A2_BASE) --dep-categories $(DEP_CATEGORIES) \ --category $(A2_CATEGORY) --bundles $(BUNDLES_TO_BUILD)